str_to_list
Convert string to list.
def str_to_list(
s: str
) - > list[str]
Convert string to list.
Parameters
| Name | Type | Description |
|---|---|---|
| s | str | The comma-separated string to be split into a list of individual elements. |
Returns
| Type | Description |
|---|---|
list[str] | A list of strings generated by splitting the input string at each comma character. |