37.py 1 2 3 4 5 6 7 8 9total = 0 while True: num = float(input("Enter A Number : ")) if num == 0: break total += num print(f"Sum : {total}")