customer = "Robert"
index = 1
while True:
print("{0}, Your order is ready.".format(customer))
index += 1
if index => 2
print("{0}, Your order is ready. We called you {1} times".format(customer, index))
index += 1
나도코딩님 무료파이썬 강의 while편에서의 질문입니다.
강의에서는 한글이니까 아래의 코드는 안넣어도 상관없지만 영어로 하면 처음 불렀는데 times라고 하면 문법이 안맞다는걸 깨닫고 처음 불렀을때와 그다음 불렀을때의 문장을 구분해서 출력하고 싶어서 넣은 코드입니다.
if index => 2
이부분에서 invalid syntax (<unknown>, line 8)이라고 에러메시가 출력이 됩니다. 원인은 도저히 모르겠습니다. 알려주시면 정말 감사하겠습니다.
제가 실수한게 한두개가 아니였군요.. 감사합니다!