2017-12-03 13:05:05 +01:00
|
|
|
#!/usr/bin/env python2
|
|
|
|
# -*- coding: utf-8 -*-
|
2017-12-13 18:31:07 +01:00
|
|
|
"""
|
|
|
|
**ć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).
|
2017-12-03 13:05:05 +01:00
|
|
|
|
2017-12-13 18:31:07 +01:00
|
|
|
"""
|
|
|
|
def is_numeric(e_lista):
|
|
|
|
if isinstance(e_lista, float) or isinstance(e_lista,int):
|
|
|
|
return("Is numeric")
|
|
|
|
else:
|
|
|
|
return ("Is_not_numeric")
|