I want to create a code that would generate number of random strings (for eg.10 in this case). I used the code below but the code kept on generating same strings
Input Code
import random
import string
s = string.ascii_lowercase
c = ''.join(random.choice(s) for i in range(8))
for x in range (0,10):
print(c)
Output
ashjkaes
ashjkaes
ashjkaes
ashjkaes
ashjkaes
ashjkaes
ashjkaes
ashjkaes
press any key to continue .....
Please help