본문 바로가기
Python

python if문

by NaHyungMin 2019. 8. 27.

 

b,c =input("테스트").split();

if(b == c):

    print(True);

else:

    print(False);

print(b, c);

 

'Python' 카테고리의 다른 글

python 함수2  (0) 2019.09.02
python 함수1  (0) 2019.08.27
python for활용  (0) 2019.08.27
python while  (0) 2019.08.27
python for  (0) 2019.08.27