multiples of 10 upto 100

Question

Print all multiples of 10 upto 100.

in progress 0
YashikaKhurana 55 years 2 Answers 693 views Master 0

Answers ( 2 )

  1. for i in range(1,11):
    print(i*10)

  2. for i in range(1,11):
    mul = 10*i
    print(mul)

Leave an answer

Browse
Browse