Code:
import hashlib
def hash_file(filename):
h=hashlib.sha1()
with open(filename,'rb') as file: #open file read in binary mode.
chunk=0
while chunk!=b'':
chunk=file.read(1024)
h.update(chunk)
return h.hexdigest()
message=hash_file('waterlily.jpg')
print(message)