Skip to content

Commit 2e25391

Browse files
authored
Python file
1 parent 1d0a2e0 commit 2e25391

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

generator.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
print("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n")
44

55
a = "+-/*!&$#?=@abcdefghijklnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890"
6-
times = input("Cuantos caracteres quieres? ")
6+
times = input("How many characters you want? ")
77
alltext = "error!"
88
error = False
99

@@ -13,7 +13,7 @@
1313

1414
if error == False:
1515
if int(times) > 9999:
16-
aceptar = input("HEY HEY HEY, eso son muchos numeros, podria haber un problema si lo ejecutas, deseas ponerlo a 9999? (N/Y) ")
16+
aceptar = input("HEY, that is a LOT of numbers, do you want to set it to 9999? (N/Y) ")
1717
if aceptar == "Y" or aceptar == "y":
1818
times = "9999"
1919
if int(times) > 0:
@@ -22,3 +22,4 @@
2222
randomItem = random.choice(a)
2323
alltext = alltext + randomItem
2424
print(alltext)
25+
pause = input("")

0 commit comments

Comments
 (0)