import hashlib #引入模塊 obj = hashlib.md5() #建立對象,能夠在這裏經過加入字節來防止撞庫 obj.update(加密內容.encode("UTF-8")) val = obj.hexdigest() print(val) #拿到密文