I want to be able to loop through a list of tuples from my text file and display each tuple.
code:
with open('output.txt', 'r') as f:
data = f.read()
print(data)
output:
[(21, 21), (21, 90), (90, 90), (90, 21)]
what I want:
(21,21)
(21,90)
(90,90)
(90,21)