It seems that when I have
a = 1
b = 5
c = a/b
print c
The console prints '0' instead of '0.2'. A cursory google search told me that in this case, Python defaults to integer division (This is changed in Python 3). The documentation says that '//' implements floating point division, but doing so for the above example still results in '0' being printed.
Is there a method specific to here that I should be using?