幸运数python代码
时间: 2024-01-16 15:16:49 浏览: 247
幸运数.py
以下是生成幸运数字并进行猜谜游戏的Python代码:
```python
import random
# 生成幸运数字
number = random.randint(1, 100)
# 进行猜谜游戏
print("数字猜谜游戏!")
guess = 0
while guess != number:
guess = int(input("请输入你猜的数字:"))
if guess > number:
print("猜的数字太大了,再试试!")
elif guess < number:
print("猜的数字太小了,再试试!")
print("恭喜你,猜对了!")
```
阅读全文