I want to get values of two or more different column in form of tuple
def top():
Top15 = answer_one()
x = Top15.loc[Top15['% Renewable'].idxmax()]
return x.loc['% Renewable' , 'Country']
I want to get values of column named % Renewable and Country in form of a tuple