I am printing these information.
print string.lower(in fo_res[2])
print string.lower(md 5sum(f_md5))
print len(string.lowe r(info_res[2]))
print len(string.lowe r(md5sum(f_md5) ))
print str(string.lowe r(md5sum(f_md5) ) == string.lower(in fo_res[2]))
and the output are
01b7ebfc27437a9 0cc421c50df8f9a c5
01b7ebfc27437a9 0cc421c50df8f9a c5
32
32
False
I was wondering why the last print statement is returning false when two
strings are identical?
Senthoor
_______________ _______________ _______________ _______________ _____
Tired of spam? Get advanced junk mail protection with MSN 8.
print string.lower(in fo_res[2])
print string.lower(md 5sum(f_md5))
print len(string.lowe r(info_res[2]))
print len(string.lowe r(md5sum(f_md5) ))
print str(string.lowe r(md5sum(f_md5) ) == string.lower(in fo_res[2]))
and the output are
01b7ebfc27437a9 0cc421c50df8f9a c5
01b7ebfc27437a9 0cc421c50df8f9a c5
32
32
False
I was wondering why the last print statement is returning false when two
strings are identical?
Senthoor
_______________ _______________ _______________ _______________ _____
Tired of spam? Get advanced junk mail protection with MSN 8.
Comment