📜  python代码示例中的掷骰子程序

📅  最后修改于: 2022-03-11 14:45:16.590000             🧑  作者: Mango

代码示例1
import random

dice = random.randint(1,6)# you can put any numbers here

print(dice)