From c5ec2b8a469d9674414edb99e5afe5bfd4b28e03 Mon Sep 17 00:00:00 2001 From: luhaitao Date: Thu, 30 Oct 2025 10:14:26 +0000 Subject: [PATCH] =?UTF-8?q?=E4=B8=8A=E4=BC=A0=E6=96=87=E4=BB=B6=E8=87=B3?= =?UTF-8?q?=20/?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- MD5.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 MD5.py diff --git a/MD5.py b/MD5.py new file mode 100644 index 0000000..1080a0d --- /dev/null +++ b/MD5.py @@ -0,0 +1,5 @@ + +import hashlib +password = ("Kangjun1234") +md5_hash = hashlib.md5(password.encode()).hexdigest() +print(md5_hash)