import hashlib

#obj = hashlib.md5(bytes('',encoding='utf-8'))
obj=hashlib.md5(bytes('123',encoding='utf-8'))
result = obj.hexdigest()
print(result)