×
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
1269    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.
Albert Einstein
Try not to become a man of success, but rather try to become a man of value.
Albert Einstein
1711
63.24
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     46571
25/06/2018     38724
01/01/2018     38404
28/06/2017     36334
02/08/2017     35038
01/08/2017     29312
06/07/2017     29068
15/05/2017     28597
14/07/2017     24427
11/09/2018     23460
softetechnologies