# -*- coding: utf-8 -*-
print('-------------------------我是echo-------------------------')
temp = input("请输入你想要数字:")
guess = int(temp)
if guess == 8:
print("恭喜你猜对啦")
print("猜对了没有奖励的哦")
else:
print("猜错了,幸运号是8")
python3.5学习if笔记(1)
阅读 47
2022-07-27
# -*- coding: utf-8 -*-
print('-------------------------我是echo-------------------------')
temp = input("请输入你想要数字:")
guess = int(temp)
if guess == 8:
print("恭喜你猜对啦")
print("猜对了没有奖励的哦")
else:
print("猜错了,幸运号是8")
相关推荐
精彩评论(0)