【问题标题】:Sum of simulation of the rolling of 2 six-sided dice with python用python模拟掷2个六面骰子的总和
【发布时间】:2013-12-28 09:04:01
【问题描述】:

编写一个模拟 2 个六面骰子的滚动。你的程序应该有一个函数 Roll() 来返回掷骰子的总和。您可以假设六个面中的每一个都同样有可能被掷出(也就是说,骰子是“公平的”)。运行您的模拟 1000 次并报告每次求和发生的频率。

到目前为止,我有这个,但我的程序似乎不会把总和加起来。我可能完全错了。请提供任何帮助。我认为我的主要问题在于我的印刷声明。我需要输出打印 2 的总和、3 的总和、4 的总和等到 12 显示多少次。

def Roll():
    for i in range(1000):
        one = 0
        two = 0
        three = 0
        four = 0
        five = 0
        six = 0
        dice1= float(0)
        dice2= float(0)

        dice1 = random.randint(1,6)
        if dice1 == 1:    
            one = one + 1
            count= 1
            return count
        elif dice1 == 2:
            two = two + 1
            count= 1
            return count
        elif dice1 == 3:
            three = three + 1
            count= 1
            return count
        elif dice1 == 4:
            four = four + 1
            count= 1
            return count
        elif dice1 == 5:
            five = five + 1
            count= 1
            return count
        else:
            six = six + 1
            count= 1
            return count

        dice2 = random.randint(1,6)
        if dice2 == 1:    
            one = one + 1
        elif dice2 == 2:
            two = two + 1
        elif dice2 == 3:
            three = three + 1
        elif dice2 == 4:
            four = four + 1
        elif dice2 == 5:
            five = five + 1
        else:
            six = six + 1

        total = one + two + three + four + five + six

        print("2", dice1 + dice2)   
        print("3", dice1 + dice2)
        print("4", dice1 + dice2)
        print("5", dice1 + dice2)
        print("6", dice1 + dice2)    
        print("7", dice1 + dice2)
        print("8", dice1 + dice2)   
        print("9", dice1 + dice2)
        print("10", dice1 + dice2)
        print("11", dice1 + dice2)
        print("12", dice1 + dice2)

【问题讨论】:

  • 我删除了 SQL 标签,因为这似乎与 SQL 无关。

标签: python simulator python-3.2


【解决方案1】:

我已经回答了你的一个朋友同样的任务:

import random
from collections import defaultdict

def main():
    dice = int(input("Enter the number of dice: "))
    sides = int(input("Enter the number of sides: "))
    rolls = int(input("Enter the number of rolls to simulate: "))
    result = roll(dice, sides, rolls)
    maxH = 0
    for i in range(dice, dice * sides + 1):
        if result[i] / rolls > maxH: maxH = result[i] / rolls
    for i in range(dice, dice * sides + 1):
        print('{:2d}{:10d}{:8.2%} {}'.format(i, result[i], result[i] / rolls, '#' * int(result[i] / rolls / maxH * 40)))


def roll(dice, sides, rolls):
    d = defaultdict(int)
    for _ in range(rolls):
        d[sum(random.randint(1, sides) for _ in range(dice))] += 1
    return d

main()

您可以取出对您有用的部分。这还应该涵盖后续问题,例如:“我如何整齐地打印它”和“我如何绘制直方图”。


例子:

Enter the number of dice: 2
Enter the number of sides: 6
Enter the number of rolls to simulate: 1000
 2        28   2.80% ######
 3        59   5.90% #############
 4        84   8.40% ###################
 5        96   9.60% ######################
 6       155  15.50% ####################################
 7       170  17.00% ########################################
 8       147  14.70% ##################################
 9       102  10.20% #######################
10        80   8.00% ##################
11        50   5.00% ###########
12        29   2.90% ######

【讨论】:

  • 您的回答很有帮助,非常感谢。我只改变了第一部分。我不想让程序询问用户正在掷多少个骰子,所以我指定了骰子数、面数和掷骰数。我只有一个问题。我不需要打印百分比部分。我试过重新排列它,但它给了我一个错误。我该如何解决。换句话说,我只想要输出中的前两个“列”?
  • {:2d}{:10d}替换{:2d}{:10d}{:8.2%} {}
  • 哦,我明白了。我保留了 {},只是删除了 {:8.2%}...您能解释一下为什么 {} 也被删除了吗?
【解决方案2】:

这是一个快速而肮脏的方法

from collections import Counter
import random

def roll():
  return random.randint(1,6) + random.randint(1,6)

counter = Counter( roll() for _ in range(1000) )

for num, cnt in counter.iteritems():
  print '%2d: %.3f' % (num, cnt / 1000.0)

导致

 2: 0.022
 3: 0.063
 4: 0.072
 5: 0.104
 6: 0.154
 7: 0.174
 8: 0.141
 9: 0.112
10: 0.077
11: 0.057
12: 0.024

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2021-03-12
    • 2011-07-12
    • 2013-01-15
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多