1
0
forked from tdwojak/Python2017
Python2017/labs04/task01.py
2017-12-03 15:28:07 +01:00

16 lines
299 B
Python

#!/usr/bin/env python2
# -*- coding: utf-8 -*-
def isNumeric(x):
isTrue = True
for i in range(len(x)):
if isinstance(x[i], (int , float )):
if isTrue == False:
pass
else:
isTrue = False
return isTrue
print(isNumeric([1,4,5.4]))