python/w3schools

[w3schools] Python Syntax

유호야 2021. 5. 20. 22:40
반응형
if 5>2 :
	print("it works")
//정상적으로 들여쓰기 한 경우

파이썬에서는 들여쓰기가 중요하다.

해당 코드는 실행이 정상적으로 되지만

print 앞에 들여쓰기를 하지 않았을 경우는

if 5>2 :
print("it works")
//실행이 되지 않는다.

 실행이 되지 않고 오류가 발생한다.

 

두 줄을 출력할 때는

그 들여쓰기 정도가 똑같아야 한다.

//정상적으로 실행되는 경우
if 5 > 2:
 	print("Five is greater than two!") 
 	print("Five is greater than two!")

//에러1
if 5 > 2:
 		print("Five is greater than two!") 
 	print("Five is greater than two!")

//에러2
if 5 > 2:
 	print("Five is greater than two!") 
 print("Five is greater than two!")

 

 

반응형

'python > w3schools' 카테고리의 다른 글

[w3schools] Python Variables - Python Variables  (0) 2021.05.20
[w3schools] Python Comments  (0) 2021.05.20
[w3schools] Python Intro  (0) 2021.05.20
[w3schools] Python HOME  (0) 2021.05.20
[PYTHON] W3Schools로 파이썬 공부하기  (0) 2021.03.27