Alan Gauld wrote: > d = random.choice(range(26)) > > replaces all of it!
or d = random.randrange(26) no need to creat the list at all. Kent _______________________________________________ Tutor maillist - [email protected] http://mail.python.org/mailman/listinfo/tutor
