×
FREE ASSISTANCE FOR THE INQUISITIVE PEOPLE
Tutorial Topics
X
softetechnologies
South Point - Class XI - Computer Science. Assignment Number 14a Use of capitalize() and split()
South Point - Class XI - Computer Science. Assignment Number 14b - Python Language
1077    Dibyendu Banerjee    09/12/2020

Write a program to input the lower and upper limits of a range of numbers (including the limits), and then print only those numbers in that range whose sum of the digits is odd.
For example, if the lower and upper limits input are 20 and 33, then the numbers that will be printed are 21, 23, 25, 27, 29, 30, 32.

softetechnologies
ll=int(input("Enter a Lower limit : "))
ul=int(input("Enter a Upper limit : "))
while(ll<=ul):
    n=ll
    s=0
    while(n>0):
        s=s+(n%10)
        n=n//10
    if(s%2==1):
        print(ll)
    ll=ll+1 
softetechnologies
South Point - Class XI - Computer Science. Assignment Number 14a Use of capitalize() and split()
softetechnologies
Author Details
Dibyendu Banerjee
Ex student of Scottish Church College. Served a Nationalised Bank for nearly 35 years. Authored novels in Bengali. Translated into Bengali novels/short stories of Leo Tolstoy, Eric Maria Remarque, D.H.Lawrence, Harold Robbins, Guy de Maupassant, Somerset Maugham and others. Also compiled collections of short stories from Africa and Third World. Interested in literature, history, music, sports and international films.
Enter New Comment
Comment History
No Comment Found Yet.
Rabindranath Tagore
We come nearest to the great when we are great in humility.
Rabindranath Tagore
2756
57.29
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     43551
01/01/2018     36485
25/06/2018     35498
28/06/2017     34551
02/08/2017     32982
01/08/2017     27463
06/07/2017     27212
15/05/2017     26845
14/07/2017     22461
21/04/2018     21111
softetechnologies