What is output?
c = 1
sum = 0
while (c < 10):
c = c + 3
sum = sum + c
print (sum)
Answers
Answered by
1
the output for the following commands will be
41121
41121
williambarnes:
thanks! your a life savior
Answered by
1
the output will be
21
Similar questions