print() and range() for Python 3

pull/366/head
cclauss 7 years ago committed by GitHub
parent 06ecaf9168
commit bdc3743e30

@ -6,7 +6,7 @@ import hashlib
text = "I am Satoshi Nakamoto"
# iterate nonce from 0 to 19
for nonce in xrange(20):
for nonce in range(20):
# add the nonce to the end of the text
input = text + str(nonce)
@ -15,4 +15,4 @@ for nonce in xrange(20):
hash = hashlib.sha256(input).hexdigest()
# show the input and hash result
print input, '=>', hash
print(input, '=>', hash)

Loading…
Cancel
Save