forked from tdwojak/Python2017
task01 (labs04) done
This commit is contained in:
parent
84f0d5479f
commit
2ce58cac05
@ -4,12 +4,13 @@
|
|||||||
#Napisz funckję ``is_numeric``, która sprawdzi, czy każdy element z przekazanej listy jest typu int lub float. Wykorzystaj funcję ``isinstance()`` (https://docs.python.org/2/library/functions.html#isinstance).
|
#Napisz funckję ``is_numeric``, która sprawdzi, czy każdy element z przekazanej listy jest typu int lub float. Wykorzystaj funcję ``isinstance()`` (https://docs.python.org/2/library/functions.html#isinstance).
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def is_numeric(x):
|
def is_numeric(x):
|
||||||
if (isinstance(x, int) == True):
|
|
||||||
return ('obiekt typu int')
|
for i in x:
|
||||||
if (isinstance(x, float) == True):
|
if (isinstance(i, (int, float)) == True):
|
||||||
return ('obiekt typu float')
|
return True
|
||||||
|
else:
|
||||||
|
return False
|
||||||
|
|
||||||
|
|
||||||
print(is_numeric(5.677))
|
print(is_numeric([5.62,7,8]))
|
Loading…
Reference in New Issue
Block a user