Python program that accepts a string and calculate the number of digits and letters and space

Question

Python program that accepts a string and calculate the number of digits and letters and space
🧐 Not the exact question you are looking for?Go ask a question

Solution 1

Sure, here is a Python program that calculates the number of digits, letters and spaces in a given string:

def count_chars(s):
    digits = letters = spaces = 0

    for char in s:
        if char.isdigit():
            digits += 1
        elif char.isalpha():
            letters += 1
   
    Knowee AI StudyGPT is a powerful AI-powered study tool designed to help you to solve study prob
Knowee AI StudyGPT is a powerful AI-powered study tool designed to help you to solve study problem.
Knowee AI StudyGPT is a powerful AI-powered study tool designed to help you to solve study problem.
Knowee AI StudyGPT is a powerful AI-powered study tool designed to help you to solve study problem.
Knowee AI StudyGPT is a powerful AI-powered study tool designed to help you to solv

This problem has been solved

Similar Questions

Python program that accepts a string and calculate the number of digits and letters and space

Python code to calculate the number of digits in a string.Sample Input:Welc0meSample OutputThe number of digits is: 1

Debug the given Python code to calculate the number of digits in a string.Sample Input:Welc0meSample OutputThe number of digits is: 1

Write a Python program that accepts an integer (n) and computes the value of n+nn+nnn.

Write a python program to count the number of palindrome strings that occurred in the given string.

1/3