I am currently learning, and loving, Python and have a question about
random().
Right now, what I have to do to get a whole number and not a decimal
using random.random() is this:
0.8476572850185 6734
847657285018567 34.0
Is there a better way to do that besides doing this:
096573986712387 69
Thanks for your time.
David
random().
Right now, what I have to do to get a whole number and not a decimal
using random.random() is this:
>>>random.rando m()
>>>_ * 10**17
Is there a better way to do that besides doing this:
>>>random.randi nt(000000000000 00000, 999999999999999 99)
Thanks for your time.
David