-1

I am extremely new to python and because i was bored, I built a simple password generator

code:

import random

upper = "ABCDFGHIJKLMNOPQRSTUVXYZ"
lower = "abcdefghijklmnopqrstuvxwyz"
numbers = "1234567890"
symbols = "><{}[]()!@#$%^&*:"

all = lower + upper + numbers + symbols
length = 16

password = "".join(random.sample(all, length))
print(password)

I used pyinstaller to convert it into an exe then when I run the exe it opens up a terminal shows for half a second the password and closes. How do i make it "print for a long time" so that it is useable, specifically i want to make it stay open until the user closes it?

tripleee
  • 139,311
  • 24
  • 207
  • 268

1 Answers1

0
...
print(password)
input('Press Enter to exit...')
madbird
  • 699
  • 3
  • 9