Write a function filter_codes(list_codes) that receives a list of codes and returns another list containing those codes that:
- Only have numeric characters; and
- Are at least 2 characters long; and
- At most 6 characters long
Hint: remember that Python has a built-in function for determining if a string only contains numeric characters.
solve using python
