条件判断

条件判断_第1张图片

 

age = 3
if age >= 18:
    print('adult')
elif age >= 6:
    print('teenager')
else:
    print('kid')



s = input('birth:')
birth = int(s)
if birth < 2000:
    print('00前')
else:
    print('00后')

你可能感兴趣的:(条件判断)