×
FREE ASSISTANCE FOR THE INQUISITIVE PEOPLE
Tutorial Topics
X
softetechnologies
Assignment 2 of South Point School List in Python South Point - Class XI - Computer Science. Assignment Number 14b
South Point - Class XI - Computer Science. Assignment Number 14a - Python Language
2039    Arnab De    09/12/2020

Write a Python program to input a number and count the number of digits which are multiple of 3.
For example, if the number is 2368965, then the output will be 4 (as the digits 3, 6, 9, 6 in the number are multiples of 3).

softetechnologies
n=int(input("Enter a number : "))
count=0
while(n>0):
    r=n%10
    if(r%3==0):
        count=count+1
    n=n//10
print("Total odd digit in the number is ",count)
softetechnologies
Assignment 2 of South Point School List in Python South Point - Class XI - Computer Science. Assignment Number 14b
softetechnologies
Author Details
Arnab De
I have over 16 years of experience working as an IT professional, ranging from teaching at my own institute to being a computer faculty at different leading institute across Kolkata. I also work as a web developer and designer, having worked for renowned companies and brand. Through tutorialathome, I wish to share my years of knowledge with the readers.
Enter New Comment
Comment History
No Comment Found Yet.
Leo Tolstoy
However diffcult life may seem, there is always something you can do, and succeed at. It matters that you don not just give up.
Leo Tolstoy
428
78.49
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     53634
25/06/2018     44651
01/01/2018     43347
28/06/2017     40988
02/08/2017     39938
01/08/2017     34003
06/07/2017     33837
15/05/2017     33082
11/09/2018     29681
14/07/2017     29486
softetechnologies