- Home
- Course Category
- Course Result
- Course Detail
Hot Line: 08377052947
-
TeacherManoj Sir
-
Category
Programming, Website Development
-
Duation
20 hours
-
Reviews(42 review)
-
Call Us for Details
Basic Python Course Questions
Python programming language is a general-purpose, dynamic programming Language.Python language have a large library of packages which makes python for beginners a language of choice.
Programs for practice
In the program below, we used the islower method to check lowercase of alphabets
Source Code:
PROGRAM TO COUNT NUMBER OF LOWERCASE CHARACTERS IN A STRING IN PYTHON
# PROGRAM TO COUNT NUMBER OF LOWERCASE CHARACTERS IN A STRING
string=input("Enter string:")
count=0
for i in string:
if(i.islower()):
count=count+1
print("The number of lowercase characters is:")
print(count)
Output
Run the program to see the output