TR
Python için hazırlanmış bir şifre girişi.
Kullanımı "input()" işleviyle aynıdır, ancak "input" ve "getpass"tan farkı, karakter yerine * yazdırmasıdır.
EN
A password input prepared for Python.
Its usage is the same as the "input()" function, but the difference from "input" and "getpass" is that it prints * instead of characters.
TR
Modül içer aktarılır ve modüle ait olan passwordInput
komutu herhangi bir değişkene return edilir. Kullanıcı şifreyi girdiğinde değişken şifrenin değerine sahip olacaktır.
EN
The module is imported and the passwordInput
command belonging to the module is returned to any variable. When the user enters the password, the variable will have the value of the password.
import passwordInput
password=passwordInput.passwordInput("Enter Your Password: ")
print("Password is "+password)
from passwordInput import passwordInput
uname=input("User Name: ")
password=passwordInput("Password: ")
if uname=="python" and password=="best":
print("Welcome Back!")
else:
print("ERROR")
Muhammed KARAMAN-MAMOSKO-
Web Site: www.mamosko.ml
Mail: admin@mamosko.ml
Instagram: mhmdkrmn1
GitHub: MAMSOKO