Write a program to print all the odd numbers between two ranges(Include the range too)
Refer sample input and output for formatting specification.
r1=int(input('Enter starting range: ')) r2=int(input('Enter ending range: ')) for i in range(r1,r2+1): if(i%2!=0): print(i)
Input_1:
Enter starting range: 1
Enter ending range: 11
Output:
1
3
5
7
9
11
Input_2:
Enter starting range: 24
Enter ending range: 38
Output:
25
27
29
31
33
35
37
Exec. on linux
Morae!Q!
- Insert and Extend in list
- Interchange first and last number in list
- Print Odd Numbers in range
- Compare List in python
- Find whether the largest element in the array is at least twice as much as every other number in the array.
- Find minimum cost to reach the top of the floor
- Word Count in Python
- Lower case to upper case in python
- Display Time in python
- Sum of Odd And Even in Python
- Surface Area of Walls
- Find the sum of squares of individual digits
- Print the given series – 1 1 2 6 24
- Minimum number of steps required to reach destination.
- Seconds to Days Hours Minutes
- Program to remove add “Hyphen” character in the entered string
- Remove the nth Index Character from a Non-Empty String
- Relational operator Question
- Check whether all the given numbers lies in range of x and y.
- Find the Armstrong numbers between the given range.