import hashlib data = "example data".encode() md5_hash = hashlib.md5(data).hexdigest() print(f"MD5 雜湊值: {md5_hash}")