import hashlib data = "Hello, World!".encode() # 轉換為位元組 hash_object = hashlib.sha256(data) hash_hex = hash_object.hexdigest() print(f"SHA-256 雜湊值: {hash_hex}")