프로그래밍/Python2013. 9. 17. 13:28

해결방법 : 들여쓰기 


에러난 코드

1
2
3
a = 3
if a < 5 :
print("True")


해결 코드

1
2
3
a = 3
if a < 5 :
    print("True")


Posted by 건깡