forked from tdwojak/Python2017
zadanie1
This commit is contained in:
parent
074950304c
commit
89e8ad8bb4
@ -1,3 +1,12 @@
|
||||
#!/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(e_lista):
|
||||
if isinstance(e_lista, float) or isinstance(e_lista,int):
|
||||
return("Is numeric")
|
||||
else:
|
||||
return ("Is_not_numeric")
|
||||
|
Loading…
Reference in New Issue
Block a user