11 lines
315 B
Python
11 lines
315 B
Python
|
'''
|
||
|
**ćwiczenie 1**
|
||
|
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):
|
||
|
|
||
|
return ( isinstance(x, (int, float)))
|
||
|
|
||
|
in_numeric(5)
|