https://www.acmicpc.net/problem/10930
import hashlib
string_to_hash = input()
hash_object = hashlib.sha256(str(string_to_hash).encode('utf-8'))
print(hash_object.hexdigest())
sha256메소드 안에 문자열은 utf8로 인코딩을 반드시 지정해주어야 에러가 안난당!
import hashlib
input_data = input()
encoded_data = input_data.encode()
# hashlib.sha256(문자열의 바이트 객체)
result = hashlib.sha256(encoded_data).hexdigest()
print(result)