"파이썬 if"의 두 판 사이의 차이

(새 문서: ==개요== ;파이썬 if <syntaxhighlight lang='python' run> if 43 > 42: print('hello') print('world') </syntaxhighlight> <syntaxhighlight lang='python' run> if 43 > 42: print ('he...)
 
 
8번째 줄: 8번째 줄:
</syntaxhighlight>
</syntaxhighlight>
<syntaxhighlight lang='python' run>
<syntaxhighlight lang='python' run>
if 43 > 42: print ('hello')
if 43 > 42:
    print ('hello')
</syntaxhighlight>
</syntaxhighlight>


==같이 보기==
==같이 보기==

2021년 10월 4일 (월) 19:14 기준 최신판

1 개요[ | ]

파이썬 if
if 43 > 42:
	print('hello')
	print('world')
if 43 > 42:
    print ('hello')

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}