I have this python script that takes arguments as strings separated by "," but I cannot just split it because there are some arguments that contain ",". The input is something like this:
"hello, how are you","how old are you"
and I want to get them as:
["hello, how are you","how old are you"]
'"hello, how are you","how old are you"', because as you wrote it it is already a tuple of 2 strings...?