Hi i wanted to know how to freeze a programm in python.
from time import *
from sys import *
caractère = ("ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!#$%&'()*+,-./:;<=>?@[\]^_`{|}~").lower()
a = int(input("The number of character in the password: "))
print("The password is:")
for i in range(a):
password = ""
cara = choice(caractère)
print(cara, end='')
At the end i want to see the password but i can't because the programm the program closes automatically. Can we do it? Thanks