x = (2, 3, 4)
a, b, c = x
d, e, f = float(a, b, c)
print(d)
This gives an error. Is it possible to change multiple integers to floats?
x = (2, 3, 4)
a, b, c = x
d, e, f = float(a, b, c)
print(d)
This gives an error. Is it possible to change multiple integers to floats?