#try to avoid input function a = (11,22,33,44,55,66,77,88) b = [] for i in a: b.append(float(i)) print(tuple(b))
Click the run button. Try to avoid input() function.