EXTREME NOOB, lists?
Quinn Dunkan
quinn at baht.ugcs.caltech.edu
Fri Sep 1 22:55:22 EDT 2000
More information about the Python-list mailing list
Fri Sep 1 22:55:22 EDT 2000
- Previous message (by thread): EXTREME NOOB, lists?
- Next message (by thread): EXTREME NOOB, lists?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On Fri, 1 Sep 2000 21:30:03 -0400, skeetor <skeetornospam at bellsouth.net> wrote: >Ok, apparently I was unclear. This language is still unfamiliar to me... >please help me. >I want to combine all the elif statements with the if statement to say. >"if a is equal to any number in list x then print a's range" > >here's what I have. > >a = input ("which dice: ") >def dice_numbers(a): > a = a + 1 > b = range(1, a) > print b >if a == 4: > dice_numbers (a) >elif a == 6: > dice_numbers (a) >elif a == 8: > dice_numbers (a) >elif a == 10: > dice_numbers (a) >elif a == 12: > dice_numbers (a) >elif a == 20: > dice_numbers (a) >elif a == 100: > dice_numbers (a) >else: > print ("try again") if a in [4, 6, 8, 10, 12, 20, 100]: ... But what if you want 1d15? Or meta-dice which roll 1d(2d4) ? import string, random def roll(s): times, die = map(int, string.split(s, 'd')) r = 0 for i in range(times): r = r + random.choice(range(die)) + 1 return r ... doesn't do meta-dice though :)
- Previous message (by thread): EXTREME NOOB, lists?
- Next message (by thread): EXTREME NOOB, lists?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list