13장 심사문제 질문드립니다.
, seul gi님이 작성price=int(input())
coupon=input()
if coupon=="Cash3000":
price -=3000
print(price)
이렇게 하는 것은 알겠는데요!!
if coupon=="Cash5000":
print(price-=5000)
이렇게 하면 왜 오류가 나는건가요!?
Re: 13장 심사문제 질문드립니다.
, Chicken Chic님이 작성x += 1과 같은 표현은 파이썬에서 augmented assignment statement라고 합니다.
그리고, print()함수 안에는 statement를 사용할 수 없습니다.