I have string in the following form:
As you can see, the tuples inside the string are space separated. I want to know how can I extract those tuples into separate variables.
Code:
my_string = '(1, 2) (3, 4)'
Comment