标签:got think ldb put input print first test enc
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")
标签:got think ldb put input print first test enc
原文地址:https://www.cnblogs.com/matt-928503002/p/10063356.html