first test

cong py study test 

# Author:WenCong Tan


'''age_of_oldboy = 56

guess_age = int(input("guess_age:"))
if guess_age == age_of_oldboy:
print("yes,you got it")
elif guess_age > age_of_oldboy:
print("think smaller")
else:
print("think bigger!")

'''

age_of_oldboy = 56

guess_age = int(input("guess_age:"))
if guess_age == age_of_oldboy:
print("yes,you got it")
elif guess_age > age_of_oldboy:
print("think smaller")
else:
print("thind bigger")

猜你喜欢

转载自www.cnblogs.com/matt-928503002/p/10063356.html