list_int_python_isinstance
No overview available.
def list_int_python_isinstance(
input_list: list
) - > list
Filters a list to return only the elements that are of the integer data type.
Parameters
| Name | Type | Description |
|---|---|---|
| input_list | list | The collection of mixed-type elements to be filtered for integers. |
Returns
| Type | Description |
|---|---|
list | A new list containing only the integer elements from the original input list. |