Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

this is sort of a follow up question to a question I had yesterday. Im a newbie to python and currently teaching myself using LPTHW by Zed Shaw. The code below is broken and i could use some help fixing it, im trying to make a random number generator for use with RPGs.

from random import randint
name = raw_input('\n Hello there. Please Type in your name > ')

print """
Hello {} & welcome to the Random Number Generator by Ray Weiss.
""".format(name)

upper = int(raw_input('Enter the type of dice you want to roll > '))

n = int(raw_input("How many D{} you'd like to roll? ".format(upper)))

for _ in xrange(n):
    print randint(1, upper)

prompt = """
Would you like to roll another D{}? Type 'yes', 'no', or 'quit'
""".format(upper)

answer = raw_input(prompt)

while answer == "yes":
    for _ in xrange(n):
            print randint(1, upper)
            prompt = """
            Would you like to roll another D{}? Type 'yes', 'no', or 'quit'
            """.format(upper)
            answer = raw_input(prompt)

if answer == "no":
    upper = int(raw_input('Enter the type of dice you want to roll > '))
    n = int(raw_input("How many D{} you'd like to roll? ".format(upper)))
    for _ in xrange(n):
        print randint(1, upper)
        prompt = """
        Would you like to roll another D{}? Type 'yes', 'no', or 'quit'
        """.format(upper)
        answer = raw_input(prompt)

if answer == "quit":
    print """
    Thank you {} for using the D{} RNG by Ray Weiss! Goodbye!
    """.format(name, upper)

Ideally what i want to happen is that it asks me first how many sided die i want and how many dice i want to roll. after that, i want it to ask me if i want to roll that same die and amount again, if i say yes, then it does it. if i say no, i want it to go back and ask me what sided die and how many die i want to roll again.

Edit: I think this code is a little better but its still not working

from random import randint

def roll(sides, num_of_dices):
    return [randint(1, sides) for i in range(num_of_dices)]

prompt = "> "

# Main Program

num_of_dices = input(prompt)
sides = input(prompt)


while True:
  results = roll(sides, num_of_dices)
  print results

  s = input(prompt)
  if s == 'quit':
      break
share|improve this question
1  
Hi! I'm glad you liked Lev Levitsky's answer and I realize you come from Stack Overflow, but unfortunately this question is off-topic on Code Review. The faq explains it nicely, but basically non-working code should go to Stack Overflow, and working code you want to improve should come here. I'm going to flag this question, hoping that a nice moderator will be able to move it to SO. Have a nice day! – Quentin Pradet Sep 21 '12 at 14:44
Agh this is the second question Ive done thats been in the wrong section, my apologies! I should have read the FAQ closer. Thanks Cygal! – lerugray Sep 21 '12 at 14:58
1  
I don't understand what you intend this to do. Also, I can't see a while loop! – Andy Hayden Sep 21 '12 at 15:32
Ok, you know that you need a while loop. Where is your attempt at using one? – Winston Ewert Sep 21 '12 at 15:33
Whoops I copied the wrong save, lemme fix that. – lerugray Sep 21 '12 at 15:37
show 3 more comments

migrated from codereview.stackexchange.com Sep 21 '12 at 15:22

1 Answer

up vote 0 down vote accepted

So, your program is going to be like this:

def roll(sides, num_of_dices):
    # returns some list

# main program

sides = input(...)
num_of_dices = input(...)

while True:
  results = roll(sides, num_of_dices)
  print results

  s = input(...)
  if s == 'quit':
      break

First try to implement and test roll separately and when it's ready, integrate it with the main program.

As to the implementation or roll, rolling N dices is the same as rolling one dice N times. In python, to perform an action N times and collect results, you use a list comprehension:

results = [action for i in range(N)]

so, your action is to roll one sides-sided dice and we need to repeat that num_of_dices times. Putting it all together,

def roll(sides, num_of_dices):
    return [roll_one_dice(sides) for i in range(num_of_dices)]
share|improve this answer
This rules! Thanks! but will this just give me the totals of the die rolls, or the results of each one? I would try to get it to work myself but that question is screwing with my head in terms of returning a list. – lerugray Sep 21 '12 at 16:36
@lerugray: this will print the results of a single roll and then ask the user if he wants to continue. What I meant by "return a list" is that when you've got 5 6-sided dices, the result is going to be something like [1, 2, 1, 6, 3] - one number per dice. – thg435 Sep 21 '12 at 16:52
I guess im just having some trouble figuring out how to implement roll, i assume ill have to use xrange() but im not really sure how to implement it in a function. Was I on the right track indenting things twice for the for _ in xrange(n) part in my original code? – lerugray Sep 21 '12 at 17:07
@lerugray: I added some explanations to the post. – thg435 Sep 21 '12 at 17:19
Thanks so much! I appreciate it! This really helps. – lerugray Sep 21 '12 at 17:22
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.