“Python Sprawdź, czy ciąg jest pływak” Kod odpowiedzi

Sprawdź, czy Float to Python Integer

>>> def isFloatInteger(float):
>>> 	return float.is_integer()
>>> isFloatInteger(0.62)
False
>>> isFloatInteger(1.00)
True
pi junky

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

# Interger will be flaged as True as well.
def isfloat(num):
    try:
        float(num)
        return True
    except ValueError:
        return False

print(isfloat('s12'))
False
print(isfloat('1.123'))
True
print(isfloat('456'))
True
Intempestive Al Dente

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 Sprawdź, czy ciąg jest pływak”

Pytania podobne do “Python Sprawdź, czy ciąg jest pływak”

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

Przeglądaj inne języki kodu