“Sprawdź, czy ciąg ma cyfry 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

Sprawdź, czy ciąg ma cyfry 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

Jeśli dowolna liczba Python

def num_there(s):
    return any(i.isdigit() for i in s)
Dead Dog

Python Sprawdź, czy numer zawiera cyfrę

for number in numbers:
    if '4' in str(number):
        print('{} True'.format(number))
    else:
        print("False")
Victorious Vole

Jak sprawdzić, czy cyfra w int Python

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

Odpowiedzi podobne do “Sprawdź, czy ciąg ma cyfry Python”

Pytania podobne do “Sprawdź, czy ciąg ma cyfry Python”

Więcej pokrewnych odpowiedzi na “Sprawdź, czy ciąg ma cyfry Python” w Python

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

Przeglądaj inne języki kodu