s=0
for i in range(99, 0, -1):
s=s+i
print("s=",s)
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
s=0 for i in range(99, 0, -1): s=s+i #this line needs to be indented to work print("s=",s)
Comments
s=0 for i in range(99, 0, -1): s=s+i #this line needs to be indented to work print("s=",s)
Leave a comment