/ Published in: Python
Returns 5 random alphanumeric strings of arbitrary size.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
import random, string for c in range(5): print random.sample(string.letters+string.digits, 8)