用python3.6程序编写一个函数,实现摇骰子的功能,打印N个骰子的点数和(使用 random模块:from random import randint) 。
时间: 2023-06-14 14:03:19 浏览: 294
python写的骰子游戏
4星 · 用户满意度95%
以下是一个实现摇骰子并打印N个骰子点数和的Python函数代码:
```python
from random import randint
def roll_dice(n):
"""摇n个骰子并计算它们的点数和"""
total = 0
for i in range(n):
roll = randint(1, 6)
print(f"第{i+1}个骰子的点数为:{roll}")
total += roll
print(f"{n}个骰子的点数和为:{total}")
```
函数中使用了 Python 内置的 `range()` 函数来循环 n 次,每次摇一个骰子并计算点数和。摇骰子的点数使用了 Python 的 `random` 模块中的 `randint()` 函数,该函数可以生成指定范围内的随机整数。最后函数会打印每个骰子的点数和 n 个骰子的总点数和。如果想要测试该函数,可以调用该函数并传入一个整数参数,例如:
```python
roll_dice(5)
```
该代码将会摇 5 个骰子并计算它们的点数和。
阅读全文