Write a Python Program to Count and Display the Number of Uppercase Lowercase Characters in String

preview_player
Показать описание
Hi Guys, Welcome to my channel.

In this video you will learn about how to Write a Python Program to Count and Display the Number of Uppercase Lowercase Characters in String

Python Scripts
======================

Python Functions Solved
==========================

Python Programs Solved
============================

Code
=============================
"""
Write a Python Program to Count and Display the Number of Uppercase Lowercase Characters in String
"""

my_string = input("Enter a String : ")

upper_count, lower_count = 0, 0

for letter in my_string:
upper_count += 1
lower_count += 1

print("Upper Case Count is : ", upper_count)
print("Lower Case Count is : ", lower_count)

Keywords
=============================
#python #python3 #python_assignment #pythonprogramming #pythontutorial #pythonprojects #pythoncourse #pythonbaba #pythonforbeginners #pythonautomation #pythonbasic #pythonbeginners
Рекомендации по теме
welcome to shbcf.ru