内容总结于:https://space.bilibili.com/37974444
1.随机数
在python中,要使用随机数,首先需要导入 随机数 的 模块--“工具包”
import random
导入模块后,可以直接在 模块名称 后面敲一个. 然后按Tab键,会提示该模块中包含的所有函数
random.randint(a,b),返回[a,b]之间的整数,包含a和b
random.randint(10,20) #生成的随机数n: 10 <= n = 20
random.randint(20,20) #结果永远是20
random.randint(20,10) #该语句是错误的,下限必须小于上限
2.示例
代码示例:https://github.com/x45w/python.git
import random
player = int(input("请输入您要出的拳 石头(1)/剪刀(2)/布(3):"))
computer = random.randint(1,3)
print("玩家选择的拳头是: %d - 电脑出的拳是%d" %(player,computer))
# 玩家赢的情况
if ((player ==1 and computer == 2)
or (player == 2 and computer == 3)
or (player == 3 and computer == 1)):
print("玩家赢了,电脑输了!")
# 平局
elif (player == computer):
print("平局了!")
# 其他情况,电脑赢
else:
print("电脑赢了,玩家输了!")