python_猜年龄

# !/usr/bin/env python
# -*-coding:UTF-8-*-

older_age = 46

guess = int(input("Guess_age:"))

if guess == older_age:
    print("You are right!")
elif guess > older_age:
    print("Your guess is so big!")
else:
    print("Your guess is so small!")
发布了55 篇原创文章 · 获赞 11 · 访问量 2609

猜你喜欢

转载自blog.csdn.net/zuefeng/article/details/105166351