from Cryptodome.Hash import SHA256
hash = SHA256.new()
hash.update(b'Sangjin is Handsome')
print hash.hexdigest()
The output I got was the following.
18446744073709551615
307445734561825860 15
5124095576030431 0
213503982334601 7
584942417355 26
9e5e1102fdffa8a0b18c0763490cad3300ad05a55443d46d41834666094baefb
Could someone explain the first 5 lines? Could someone tell me how to remove such output?