I got a problem with print
in python 3.x
If you remember from python 2.x, you can write code like this:
var = 224
print "The var is %d" %(var)
and it would print out:
The var is 224
But in python 3.x it doesn't work, so who knows please help.