Set 139 Practical Question

⭐ Q41. Cumulative List बनाइए

Example Code (Read Only):


lst = list(map(int, input("Enter numbers: ").split()))
cum = []
s = 0
s += x

Python Online Editor