in python:import random,stringstring="".join([random.choice(string.lowercase) for i in range(0,int(random.uniform(1,256)))])does importing libraries count towards a one liner? i guess they should... but python doesnt have a rand function in the global ns.
More information about formatting options
Jay JanssenYahoo!, Inc. jayj at yahoo dash inc dot com
MySQLHigh AvailabilityGlobal Load BalancingFailover
in python:import
in python:
import random,string
string="".join([random.choice(string.lowercase) for i in range(0,int(random.uniform(1,256)))])
does importing libraries count towards a one liner? i guess they should... but python doesnt have a rand function in the global ns.