string_to_tuple¶

string_to_tuple(in_str)[source]¶

Splits input string to tuple at ‘,’.

Parameters:

in_str (str) – input string.

Returns:

Return a tuple of strings by splitting in_str at ‘,’.

Return type:

tuple[str, …]