Use of print function from Python 3 requires ()

pull/491/head
Andreas M. Antonopoulos 6 years ago committed by GitHub
parent 8b07de597e
commit b7d97a5e80
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -15,4 +15,4 @@ for nonce in range(20):
hash_data = hashlib.sha256(input_data).hexdigest()
# show the input and hash result
print input_data, '=>', hash_data
print(input_data, '=>', hash_data)

Loading…
Cancel
Save