Thread: Random Seeds
View Single Post
  #2  
Old 04-27-2006, 09:21 PM
tobin tobin is offline
WorldViz Team Member
 
Join Date: Feb 2003
Posts: 251
It should, but it'd really be easy for you to test this yourself by looking at the output of:

random.seed(10)
for i in range(0,100):
print random()

random.seed(10)
for i in range(0,100):
print random()
Reply With Quote