Python/basics.py

4 lines
148 B
Python
Raw Normal View History

2020-02-03 13:49:05 +00:00
def nostrings(jumble):
return([number if type(number) == int else 0 for number in jumble])
2020-01-29 13:54:51 +00:00
2020-02-03 13:49:05 +00:00
print(nostrings([99, 'no data', 95, 94, 'no data']))