Computer Science, asked by jillujose, 4 months ago

debug the following
2.FOR R in range(1, 50,1):
if(R%5=0):
print(first 10 multiples of 5 is ', R, end="\t")​

Answers

Answered by Anonymous
2

Answer:

hi...

explanation:

#corrected code.

for r in range(1,51,1):

if r%5==0:

print("first 10 multiples of 5 are",r,end="\t")

hope it helps you ☺️

Similar questions