“Como verificar quantos dígitos a string tem no python” Respostas de código

Verifique se a string tem dígitos python

string = 'this string has digits 12345'
if any(char.isdigit() for char in string):
  #digits found
  print('"{}" has digits!'.format(string))
else:
  #digits NOT found
  print('"{}" does NOT have digits!'.format(string))
The God of Monkeys

Como verificar quantos dígitos a string tem no python

s = 'some string'

numbers = sum(c.isdigit() for c in s)
letters = sum(c.isalpha() for c in s)
spaces  = sum(c.isspace() for c in s)
others  = len(s) - numbers - letters - spaces
Bilal Efe AYDIN

Respostas semelhantes a “Como verificar quantos dígitos a string tem no python”

Perguntas semelhantes a “Como verificar quantos dígitos a string tem no python”

Mais respostas relacionadas para “Como verificar quantos dígitos a string tem no python” em Python