So a list from 0 to 100 is created and I apply the formula in line two to make list B. The issue is that it's rounded to an int and I have been trying how to get it out to 3 decimals.
A = range(0,101)
B = [(x-10)/3 for x in A]
Ex: If A = 11 (11-10)/3 = 0.333 instead of (11-10)/3 = 0.
Thanks!