Python's system of deciding for you what type to give all your variables is nice and all, but is there a way to force it to give a variable a certain data type? For instance, if you give it the following:
n = 2
m = 3
print n/m
It'll print out 0, because all the variables are ints, and it truncates the fraction off. Any way to get around this?