Skip to content
This repository was archived by the owner on Apr 29, 2024. It is now read-only.

Commit fb0aa0e

Browse files
committed
Updated main.py
- Made info about name on run - Fixed #1 and #2 - Still no nick 😈
1 parent 28fa9c0 commit fb0aa0e

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

main.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
# No comments in english version...
22
import string, secrets, os
3-
clearthis = lambda: os.system('clear')
3+
clearthis = lambda: os.system('cls, clear')
44

55
a = string.ascii_letters
66
b = string.digits
7+
print("=====================")
8+
print("𝚙𝚊𝚜𝚜𝚗𝚙𝚒𝚗𝚐𝚎𝚗")
9+
print("=====================")
710

8-
c = input("What do you want to receive? [P(assword)/P(in)/N(ick)]: ")
11+
c = input("What do you want to receive? [(assword)/(P)i̲(n)/N̲(ick)]: ")
912

1013
if c == "P" or c == "p":
1114
d = input("What length password do you need? [infinite range]: ")
@@ -14,7 +17,7 @@
1417
print("Your password is:")
1518
print(e)
1619

17-
if c == "P" or c == "p":
20+
if c == "I" or c == "i":
1821
d = input("What length of PIN do you need? [infinite range]: ")
1922
f = ''.join(secrets.choice (b) for i in range(int(d)))
2023
clearthis()

0 commit comments

Comments
 (0)