Question: 1 . 2 . Odd Numbers Sequence Objective: Create a sequence of odd numbers from 1 to 1 9 using a for loop and print

1.2. Odd Numbers Sequence
Objective: Create a sequence of odd numbers from 1 to 19 using a for loop and print each number as you go.
[11]: for i in range(1,20,2):
print(i)
1
3
5
7
9
9
11
13
15
17
19
1 . 2 . Odd Numbers Sequence Objective: Create a

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!