string_to_tuple

string_to_tuple(in_str)[source]

Splits input string to tuple at ‘,’.

Parameters

in_str (str) – input string.

Returns

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

Return type

tuple (tuple of str)