“Comment savoir si une chaîne est un nombre python” Réponses codées

Test de python si le numéro en chaîne

>>> 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

Python Vérifiez si le numéro

if type(variable) == int or type(variable) == float:
    isNumber = True
Dr. Hippo

est le nombre python

var.isdigit()
#return true if all the chars in the string are numbers
#return false if not all the chars in the string are numbers
Doubtful Dingo

Python Vérifiez si le numéro en chaîne

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

Réponses similaires à “Comment savoir si une chaîne est un nombre python”

Questions similaires à “Comment savoir si une chaîne est un nombre python”

Plus de réponses similaires à “Comment savoir si une chaîne est un nombre python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code