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
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
English,
4 months ago
English,
8 months ago
Science,
1 year ago
Social Sciences,
1 year ago
Social Sciences,
1 year ago