E
ed18hg
Hello,
I'm using this code to get the MD5 of the numbers 0-9. How can I loop
through the combination of all lowercase letters and 0-9. I read in the
documentation the string operation ascii_lowercase but I'm a bit confused on
how to combine it with integers. Thanks in advance.
for i in xrange(10):
import md5
m=md5.new()
m.update("%i"%i)
print"i=",i,"md5(i)=",m.hexdigest()
I'm using this code to get the MD5 of the numbers 0-9. How can I loop
through the combination of all lowercase letters and 0-9. I read in the
documentation the string operation ascii_lowercase but I'm a bit confused on
how to combine it with integers. Thanks in advance.
for i in xrange(10):
import md5
m=md5.new()
m.update("%i"%i)
print"i=",i,"md5(i)=",m.hexdigest()