“python verifique se o número na string” Respostas de código

teste python se número em string

>>> def hasNumbers(inputString):
...     return any(char.isdigit() for char in inputString)
... 
>>> hasNumbers("I own 1 dog")
True
>>> hasNumbers("I own no dog")
False
Thankful Turtle

Teste se o caractere é o número Python String

>>> 'A'.isdigit()
False
>>> '1'.isdigit()
True
Disturbed Dragonfly

python verifique se o número na string

s = "abc1"
contains_digit = any(map(str.isdigit, s))
print(contains_digit)
intricate_symbol

Se qualquer número Python

>>> def hasNumbers(inputString):
...     return any(char.isdigit() for char in inputString)
... 
>>> hasNumbers("I own 1 dog")
True
>>> hasNumbers("I own no dog")
False
Dead Dog

Como verificar se o dígito em int python

s = set(str(4059304593))
print('2' in s)
Tender Tapir

Respostas semelhantes a “python verifique se o número na string”

Perguntas semelhantes a “python verifique se o número na string”

Mais respostas relacionadas para “python verifique se o número na string” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código