N ODD numbers in python
Python program to get input n and print n odd numbers.
Sample Input 1:
7
Sample Output 1:
1 3 5 7 9 11 13
Try your Solution
Strongly recommended to Solve it on your own, Don't directly go to the solution given below.
#write your code here
Program or Solution
n=int(input("Enter n value:"))
i,j=0,1
while(i<n):
print(j,end=" ")
j=j+2
i=i+1
Program Explanation
while(iComments
Related Programs
- Print Natural numbers in pyhon
- Print Whole numbers in python
- Print ODD numbers in python
- Print Even numbers in python
- Print Natural numbers in reverse in python
- Sum of natural numbers in python
- N Even numbers in python
- sum of Even numbers in python
- Sum of odd numbers in pyhton
- Sum of n numbers in python
- First digit of number in python
- First digit of number is odd or even in python
- Multiply without * operator in Python
- Multiplication Table in Python
- Multiplication Table in Python till M
- Sum of postive numbers in python
- Decimal to Binary in Python
- Binary to Decimal in python
- Factorial in Python
coming Soon
coming Soon