python i have a variable with the alphabet how do i randomly chose a few code example
Example: random letter generator python
import random
import string
random.choice(string.ascii_letters)
import random
import string
random.choice(string.ascii_letters)