import hashlib import time word = input('Enter what you want hashed in sha224 here: ') enc = word.encode('utf-8') hash1 = hashlib.sha3_224(enc.strip()).hexdigest() print('The sha224 hashed result is: ' + str(hash1)) time.sleep(10) quit()