I want to make a list / array with letters and then have my program pick one of them but I want it to be lower and uppercase randomly
I can use this:
list = "A", "a", "B", "b"
print(random.choice(list))
but is there a way to just add one letter to list and then have the program do the randomization of uppercase randomly