I'm trying to write a python program that will print me a random numbers array 1 thur 100, and also print out the max value of the array. This is what I have so far:
import random
import timeit
print [random.randint(0,100) for r in xrange(10)]
print "Max number in array is",
maxfunction?