forked from tdwojak/Python2017
15 lines
396 B
Python
15 lines
396 B
Python
#!/usr/bin/env python2
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#**ćwiczenie 1**
|
|
#Napisz funckję ``is_numeric``, która sprawdzi, czy każdy element z przekazanej listy jest typu int lub float
|
|
#Wykorzystaj funcję ``isinstance()`` (#isinstance).https://docs.python.org/2/library/functions.html
|
|
|
|
|
|
def is_numeric(lista):
|
|
for x in lista:
|
|
return isinstance(x, (float, int))
|
|
|
|
|
|
is_numeric([1.0,2.0,3.0])
|