forked from tdwojak/Python2017
19 lines
521 B
Python
19 lines
521 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()`` (https://docs.python.org/2/library/functions.html#isinstance).
|
|
"""
|
|
|
|
def is_numeric(my_list):
|
|
for item in my_list:
|
|
if not (isinstance(item, int) or isinstance(item, float)):
|
|
return False
|
|
return True and len(my_list) > 0
|
|
|
|
|
|
if __name__ == "__main__":
|
|
print(is_numeric([]))
|