This commit is contained in:
holger.trampe 2019-12-13 10:08:14 +01:00
parent 0efd7e11ea
commit 8d1c257bec
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ password = ""
i = 0
while(i < 20):
password += random.choice(password_characters)
i++
i += 1
print("USERNAME: " + username)
print("PASSWORD: " + password)