Ask your own question, for FREE!
MIT 6.00 Intro Computer Science (OCW) 19 Online
OpenStudy (anonymous):

I wrote a function, and the function generates a random interval between 15 and 30 like this: randomint = random.randrange(15,30) I'm trying to set it up so that this randomint value adds itself to the value of a global variable every time the function is run... so let's say randomint generates 20 when running the function, and now the local variable randomint equals 20 within the function... can I take randomint and add it to some global variable called "totalsums", and keep adding to totalsums the value generated by the function each time the function is called? Sorry if this is confusing.

OpenStudy (anonymous):

kinda sounds like a Fibonacci number. Check out examples for those problems to get inspiration. i think wiki has one

OpenStudy (carlsmith):

Erm, maybe something like... import random totalsums = 0 def randomint(): global totalsums totalsums += random.randrange(15, 30) def test_randomint(); for each in range(100): randomint() print totalsums

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!