×
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
1563    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.
Sri Sri Ramakrishna Paramahamsa
If you want to go east, don't go west.
Sri Sri Ramakrishna Paramahamsa
966
74.13
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     52113
25/06/2018     43899
01/01/2018     42914
28/06/2017     40662
02/08/2017     39480
01/08/2017     33676
06/07/2017     33497
15/05/2017     32772
14/07/2017     29039
11/09/2018     28969
softetechnologies