please see my code below,
example_list = [
['a','b','c'],
['f','g','h'],
['i','j','k'],
]
my_string = '''
'''
for s in example_list:
pass #what will write?
print(my_string)
#ouput should be a 3 line string just like this,
('a','b','c'),
('f','g','h'),
('i','j','k');