fork download
  1. import hashlib
  2. md5=hashlib.md5()
  3. md5.update('how to use md5 in'.encode('utf-8'))
  4. md5.update('python hashlib'.encode('utf-8'))
  5. print(md5.hexdigest())
  6. # your code goes here
Success #stdin #stdout 0.1s 17556KB
stdin
Standard input is empty
stdout
736e4dedb02126d8945954f73fe326fa