forked from tdwojak/Python2017
task01
This commit is contained in:
parent
5ee5fe8c60
commit
fbbf379b04
@ -1,3 +1,15 @@
|
|||||||
#!/usr/bin/env python2
|
#!/usr/bin/env python2
|
||||||
# -*- coding: utf-8 -*-
|
# -*- 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(x):
|
||||||
|
if (isinstance(x, int) == True):
|
||||||
|
return ('obiekt typu int')
|
||||||
|
if (isinstance(x, float) == True):
|
||||||
|
return ('obiekt typu float')
|
||||||
|
|
||||||
|
|
||||||
|
print(is_numeric(5.677))
|
Loading…
Reference in New Issue
Block a user