Given the following:
list = [('[', "'Conrad Clifton'"), ('[', "'Rippa'")]
How would I get the list in the form
[('Conrad Clifton', 'Rippa')]
Something similar to:
new_list = []
for first, second in list:
new_list.append(second)
And then convert the list into a tuple. Is there a way to do this with a list comprehension?
And don’t name your list as
list. It’s a built-in type. You should not name your variable with built-in names.