-2
I can generate numbers, but letters how do I generate type AB BC AEEE
, for example.
import random
import string
for j in range(40,100):
print(random.choice(string.ascii_uppercase))
In this code I have a lowercase letter. I need 4 letters per class number of classes from 40 to 100
Ever thought of calling the job
random.choice
4 times?– Woss
it worked however they are not straight as a knife to place them in a straight line I can use print end but as ?
– Joao Victor