프로그래밍/Weekly I Learned

2023.12.28+ 파이썬 if문

타코코딩 2023. 12. 27. 14:08
""" password_correct = False
if password_correct :
    print('here is ur money')
else:
    print('wrong password') """
    
winner = 10

if winner > 10 :
    print('winner is greater than 10')
elif winner < 10:
    print('winner is less than 10')
else:
    print('winner is 10')