From fbbf379b041101ea854e304350bb78c43bd69f7d Mon Sep 17 00:00:00 2001 From: Ewelina Date: Fri, 8 Dec 2017 21:33:11 +0100 Subject: [PATCH] task01 --- labs04/task01.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/labs04/task01.py b/labs04/task01.py index 88741a4..f4e18ce 100644 --- a/labs04/task01.py +++ b/labs04/task01.py @@ -1,3 +1,15 @@ #!/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(x): + if (isinstance(x, int) == True): + return ('obiekt typu int') + if (isinstance(x, float) == True): + return ('obiekt typu float') + + +print(is_numeric(5.677)) \ No newline at end of file