“Python jest pływakiem” Kod odpowiedzi

Python Sprawdź, czy numer jest zmiennoprzecinkowy lub int

# check if a number is int or float

isinstance(x, int) # integer
isinstance(x, float) # float

import numbers
isinstance(x, numbers.Integral) # Long Int
Poised Pygmy

Python jest pływakiem

def is_number(x):
    '''
        Takes a word and checks if Number (Integer or Float).
    '''
    try:
        # only integers and float converts safely
        num = float(x)
        return True
    except ValueError as e: # not convertable to float
        return False
Poised Pygmy

Sprawdź Python numer liczby całkowitej

N.is_integer()
Troubled Tern

Sprawdź, czy sznur to pływak Python

try:
    float(element)
except ValueError:
    print "Not a float"
Cozy Dev

Python Sprawdź, czy ciąg jest pływakiem

def isfloat(num):
    try:
        float(num)
        return True
    except ValueError:
        return False

print(isfloat('s12'))
print(isfloat('1.123'))
Wojak's distant cousin

Python Sprawdź, czy ciąg jest pływak

import re
if re.match(r'^-?\d+(?:\.\d+)$', element) is None:
    print "Not float"
Clumsy Capuchin

Odpowiedzi podobne do “Python jest pływakiem”

Pytania podobne do “Python jest pływakiem”

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

Przeglądaj inne języki kodu