Project

General

Profile

1
# Random numbers
2

    
3
import sys
4
import random
5

    
6
def rand_int():
7
    return random.randint(0, sys.maxint)
(21-21/34)