filmov
tv
Write a Python Program to Count Alphabets Digits and Special Char in String
Показать описание
Hi Guys, Welcome to my channel.
In this video you will learn about how to Write a Python Program to Count Alphabets Digits and Special Char in String
Python Scripts
======================
Python Functions Solved
==========================
Python Programs Solved
============================
Code
=============================
"""
Write a Python Program to Count Alphabets Digits and Special Char in String
"""
my_string = input("Enter a string : ")
alpha_count, digit_count, s_char_count = 0, 0, 0
for letter in my_string:
alpha_count += 1
digit_count += 1
else:
s_char_count += 1
print("Alphabet Count is : ", alpha_count)
print("Digit Count is : ", digit_count)
print("Special Char Count is : ", s_char_count) c
Keywords
=============================
#python #python3 #python_assignment #pythonprogramming #pythontutorial #pythonprojects #pythoncourse #pythonbaba #pythonforbeginners #pythonautomation #pythonbasic #pythonbeginners
In this video you will learn about how to Write a Python Program to Count Alphabets Digits and Special Char in String
Python Scripts
======================
Python Functions Solved
==========================
Python Programs Solved
============================
Code
=============================
"""
Write a Python Program to Count Alphabets Digits and Special Char in String
"""
my_string = input("Enter a string : ")
alpha_count, digit_count, s_char_count = 0, 0, 0
for letter in my_string:
alpha_count += 1
digit_count += 1
else:
s_char_count += 1
print("Alphabet Count is : ", alpha_count)
print("Digit Count is : ", digit_count)
print("Special Char Count is : ", s_char_count) c
Keywords
=============================
#python #python3 #python_assignment #pythonprogramming #pythontutorial #pythonprojects #pythoncourse #pythonbaba #pythonforbeginners #pythonautomation #pythonbasic #pythonbeginners
Python Tutorial - Your First Program
Python for Beginners - Learn Python in 1 Hour
3 PYTHON AUTOMATION PROJECTS FOR BEGINNERS
Learn Python in Less than 10 Minutes for Beginners (Fast & Easy)
Python Scripting Tutorial For Beginners | Python Tutorial | Python Programming | Simplilearn
Writing a Python Script to Control my Lights | Five Minute Python Scripts
Creating Desktop Apps With Python - Lesson 1
How to Run Python Programs ( .py files ) on Windows 11 ( All Options )
Session 11 | Learn Python Programming from scratch | With source code
👩💻 Python for Beginners Tutorial
Write Python Code Properly!
Functions in Python are easy 📞
Python user input ⌨️
Modern Graphical User Interfaces in Python
Writing Our First Python Program | Python Tutorials For Absolute Beginners In Hindi #4
Python 101: Learn the 5 Must-Know Concepts
Python write a file 📝
Writing First Python Program - In Hindi
Python Program to Add Two Numbers | Sum ( addition ) of 2 num | Tutorial in Hindi
Learn Classes in Python in 4 Minutes
Make Your Python Code More Professional
11 Tips And Tricks To Write Better Python Code
15 Minute Python Tutorial For Beginners In Hindi (Full & Complete Python Crash Course)
How to Make a Game in Python
Комментарии