Filter List Integers Only Function
# Create a function that takes a list of non-negative integers and strings and return a new list without the strings.
# Requirements
# Zero is a non-negative integer.
# The given list only has integers and strings.
# The original order must be maintained.
## Tests (uncomment)
# f1=filter_list([1, 2, “a”, “b”]) # [1, 2]
# print(f1)
# f2=filter_list([1, “a”, “b”, 0, 15]) # [1, 0, 15]
# print(f2)
# f3=filter_list([1, 2, “aasf”, “1”, “123”, 123]) # [1, 2, 123]
# print(f3)
Collepals.com Plagiarism Free Papers
Are you looking for custom essay writing service or even dissertation writing services? Just request for our write my paper service, and we'll match you with the best essay writer in your subject! With an exceptional team of professional academic experts in a wide range of subjects, we can guarantee you an unrivaled quality of custom-written papers.
Get ZERO PLAGIARISM, HUMAN WRITTEN ESSAYS
Why Hire Collepals.com writers to do your paper?
Quality- We are experienced and have access to ample research materials.
We write plagiarism Free Content
Confidential- We never share or sell your personal information to third parties.
Support-Chat with us today! We are always waiting to answer all your questions.
