Answered

I will give brainliest plzzz I need help
Write a for loop that uses a variable named i as well as the range and print function to efficiently display only the odd integers from 3 to 9 (including the numbers 3 and 9.) It is recommended that you use the range function with 3 parameters in its parentheses.

Answer :

JalilBones

Answer:

Python :

for i in range (3, 10, 2):

print(i)

Other Questions