multiples of 10 upto 100 Question Print all multiples of 10 upto 100. in progress 0 Python YashikaKhurana 55 years 2 Answers 739 views Master 0
Answers ( 2 )
for i in range(1,11):
print(i*10)
for i in range(1,11):
mul = 10*i
print(mul)