I have a text file (target file of NWPU VHR-10 dataset) that included 2 tuples and one integer for each line e.g each line has the text like this:
(563,478),(630,573),1
Now I wanna find out how to split and read it like two tuples and one integer. e.g:
tuple 1: (563,478) tuple 2: (630,573) int: 1
thanks