“Jak wiedzieć, czy ciąg jest liczbą Python” Kod odpowiedzi

test Python, jeśli liczba w ciągu

>>> 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 Sprawdź, czy numer

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

to numer 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 Sprawdź, czy numer w ciągu

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

Odpowiedzi podobne do “Jak wiedzieć, czy ciąg jest liczbą Python”

Pytania podobne do “Jak wiedzieć, czy ciąg jest liczbą Python”

Więcej pokrewnych odpowiedzi na “Jak wiedzieć, czy ciąg jest liczbą Python” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu