Advertisement
shmaltorhbooks

Untitled

Jun 20th, 2012
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.10 KB | None | 0 0
  1. import random
  2.  
  3. def fn(min, max):
  4.     return (random.random() * (max - min)) + min
  5.  
  6. print fn(10, 90)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement