How do I generate (and label) a random integer with python 3.2?
Posted
by
An hero
on Stack Overflow
See other posts from Stack Overflow
or by An hero
Published on 2010-12-23T21:57:16Z
Indexed on
2010/12/24
18:54 UTC
Read the original article
Hit count: 227
Okay, so I'm admittedly a newbie to programming, but I can't determine how to get python v3.2 to generate a random positive integer between parameters I've given it. Just so you can understand the context, I'm trying to create a guessing-game where the user inputs parameters (say 1 to 50), and the computer generates a random number between the given numbers. The user would then have to guess the value that the computer has chosen. I've searched long and hard, but all of the solutions I can find only tell one how to get earlier versions of python to generate a random integer. As near as I can tell, v.3.2 changed how to generate and label a random integer. Anyone know how to do this? Thanks!
© Stack Overflow or respective owner