I'm trying to create a list range of floats and running into problems.
I've been trying something like:
a = 0.0
b = 10.0
flts = range(a, b)
fltlst.append(f lts)
When I run it I get the following DeprecationWarn ing: integer argument
expected, got float. How can I store a list of floats?
TIA
Steve
I've been trying something like:
a = 0.0
b = 10.0
flts = range(a, b)
fltlst.append(f lts)
When I run it I get the following DeprecationWarn ing: integer argument
expected, got float. How can I store a list of floats?
TIA
Steve
Comment