This is probably one of the shortest and simplest implementations I've seen in any language. Nice work MasterPi !
1.
import
string
2.
import
random
3.
4.
"".join([random.choice(string.letters
+
string.digits)
for
x
in
range(
1
, desired_length)])
[ Source ]