list_int_python
No overview available.
def list_int_python(
str_list: list[str]
) - > list[int]
Converts a list of strings into a list of integers.
Parameters
| Name | Type | Description |
|---|---|---|
| str_list | list[str] | A list of numeric strings to be converted into integers. |
Returns
| Type | Description |
|---|---|
list[int] | A new list containing the integer representations of the input strings. |