You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
341 B
16 lines
341 B
2 years ago
|
import string
|
||
|
import random
|
||
|
|
||
|
print("Content-type: text/html")
|
||
|
print()
|
||
|
# initializing size of string
|
||
|
N = 10000000
|
||
|
|
||
|
# using random.choices()
|
||
|
# generating random strings
|
||
|
res = ''.join(random.choices(string.ascii_uppercase +
|
||
|
string.digits, k=N))
|
||
|
|
||
|
# print result
|
||
|
print("The generated random string : " + str(res))
|