Print table of 12 Question Print table of 12 using while loop. solved 0 Python YashikaKhurana 55 years 3 Answers 1048 views Master 0
Answers ( 3 )
i=1
while i<=10:
print(i*12)
i=i+1
for i in range(1, 11):
print(12*i)
for i in range(1,11):
table = 12*i
print(table)