社区所有版块导航
Python
python开源   Django   Python   DjangoApp   pycharm  
DATA
docker   Elasticsearch  
aigc
aigc   chatgpt  
WEB开发
linux   MongoDB   Redis   DATABASE   NGINX   其他Web框架   web工具   zookeeper   tornado   NoSql   Bootstrap   js   peewee   Git   bottle   IE   MQ   Jquery  
机器学习
机器学习算法  
Python88.com
反馈   公告   社区推广  
产品
短视频  
印度
印度  
Py学习  »  Python

如何在python的掷骰子程序中打印单个骰子的结果?

beginner_geek07 • 3 年前 • 1050 次点击  

这就是我目前的情况:

import random
r = int(input("Enter the number of dice to roll: "))
s = int(input("Enter the number of sides per die: "))

def Rolldice(s,r):
    for i in range(0,r):
        die = random.randint(1, s)
    
        yield die
for num in range(1):
    print("Rolling",r,'d',s,':')
    print(f"Total: ")
    generator = Rolldice(s,r)
    print(sum(generator))

我想打印个人死亡,因为我已经得到了结果。

滚动2d20。。。

死亡1:1

死亡2:15

总数:16

Python社区是高质量的Python/Django开发社区
本文地址:http://www.python88.com/topic/128996
 
1050 次点击  
文章 [ 2 ]  |  最新文章 3 年前