# 1. Python program to print odd Numbers between 1 to 99
start, end = 1, 99
# iterating each number in list
for num in range(start, end)
# checking condition
if num % 2 != 0
print(num, end = )
# 2. Python program to print multiples of 3 from 300 down to 3
print "multiples of 3 from 300 down to 3 are: "
# loop to print numbers
for i in range(300,3,-1):
print i * 3
-- Mon Mar 30, 2020 11:57 am --
@Dehuman
# 1. Python program to print odd Numbers between 1 to 99
start, end = 1, 99
# iterating each number in list
for num in range(start, end):
# checking condition
if num % 2 != 0:
print(num)
num = num + 1
-- Mon Mar 30, 2020 11:58 am --
@Dehuman
# 2. Python program to print multiples of 3 from 300 down to 3
print "multiples of 3 from 300 down to 3 are: "
# loop to print numbers for i in range(300,3,-1):
print(i * 3)