print statements converted from python 2 to python 3

This commit is contained in:
mahendar7 2019-10-03 13:35:49 +05:30
parent e5b92e29a2
commit ac7a6f750e
2 changed files with 11 additions and 14 deletions

View File

@ -19,5 +19,5 @@ for filename in matches:
if 'win' in sys.platform:
ctypes.windll.user32.MessageBoxA(0, traceback.format_exc(), "Exception in " + filename, 1)
else:
print "Exception in %s: %s" % (filename, traceback.format_exc())
sys.exit(1)
print ("Exception in %s: %s" % (filename, traceback.format_exc()))
sys.exit(1)

View File

@ -52,15 +52,12 @@ for row in cur.fetchall():
# f.close()
print "Item count: %i" % (itemcount)
print "Raw length: %i" % (rawlen)
print "Bloom filter 1 length: %i, reduction to: %.2f%%" % \
(bf1.bitarray.buffer_info()[1],
100.0 * bf1.bitarray.buffer_info()[1] / rawlen)
print "Bloom filter 1 capacity: %i and error rate: %.3f%%" % (bf1.capacity, 100.0 * bf1.error_rate)
print "Bloom filter 1 took %.2fs" % (bf1time)
print "Bloom filter 2 length: %i, reduction to: %.3f%%" % \
(bf2.num_bits / 8,
100.0 * bf2.num_bits / 8 / rawlen)
print "Bloom filter 2 capacity: %i and error rate: %.3f%%" % (bf2.capacity, 100.0 * bf2.error_rate)
print "Bloom filter 2 took %.2fs" % (bf2time)
print("Item count: %i" % itemcount)
print("Raw length: %i" % rawlen)
print("Bloom filter 1 length: %i, reduction to: %.2f%%" % bf1.bitarray.buffer_info()[1],
100.0 * bf1.bitarray.buffer_info()[1] / rawlen)
print("Bloom filter 1 capacity: %i and error rate: %.3f%%" % bf1.capacity, 100.0 * bf1.error_rate)
print("Bloom filter 1 took %.2fs" % bf1time)
print("Bloom filter 2 length: %i, reduction to: %.3f%%" % bf2.num_bits / 8, 100.0 * bf2.num_bits / 8 / rawlen)
print("Bloom filter 2 capacity: %i and error rate: %.3f%%" % bf2.capacity, 100.0 * bf2.error_rate)
print("Bloom filter 2 took %.2fs" % bf2time)