Skip to main content

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

NameTypeDescription
str_listlist[str]A list of numeric strings to be converted into integers.

Returns

TypeDescription
list[int]A new list containing the integer representations of the input strings.