Files
programming-examples/python/Math/Get a single random element from a specified string.py
Michael Reber b880c3ccde Initial commit
2019-11-15 12:59:38 +01:00

2 lines
56 B
Python

import random
print(random.choice('abcdefghijklm'))