def hashing(password): hash1 = hashlib.md5(str.encode(password)).hexdigest() print ("your hashed password is:", hash1,"\n")