等峰也等你

博客园 首页 新随笔 联系 订阅 管理

随机数

在程序开发过程中,经常会使用到随机数,Python 中 ,可以使用 random 模块中的 randint() 函数获取随机数。

格式: randint(start, stop)

  • start 为随机数获取初始范围
  • stop 为随机数获取结束范围,包含该值。
  • 使用该函数前需要导入, from random import randint

from random import randint

print(randint(1, 3))

示例: 骰子游戏: 从键盘输入一个数字,和程序随机生成的 1~6范围的数字比较大小

from random import randint

play = int(input("请输入一个1-6之间的数字:"))
bot = randint(1, 6)

if play == bot:
print("点数相同,平局")
elif play > bot:
print(f"玩家{play}点,电脑{bot}点,玩家胜")
else:
print(f"玩家{play}点,电脑{bot}点,电脑胜")

posted on 2023-11-12 18:12  等峰也等你  阅读(10)  评论(0编辑  收藏  举报