有没有更优雅的方式来编写这样的代码?
my_dic = {
'Model':['Apple', 'Banana', 'Pineapple', 'Melon', 'Orange', 'Grape'],
'AAA':[
method1(y, y_Apple),
method1(y, y_Banana),
method1(y, y_Pineapple),
method1(y, y_Melon),
method1(y, y_Orange),
method1(y, y_Grape)]
,'BBB':[
method2(y, y_Apple),
method2(y, y_Banana),
method2(y, y_Pineapple),
method2(y, y_Melon),
method2(y, y_Orange),
method2(y, y_Grape)]
,'CCC':[
method3(y,y_Apple),
method3(y, y_Banana),
method3(y, y_Pineapple),
method3(y, y_Melon),
method3(y, y_Orange),
method3(y, y_Grape)]
,'DDD':[
method4(y, y_Apple),
method4(y, y_Banana),
method4(y, y_Pineapple),
method4(y, y_Melon),
method4(y, y_Orange),
method4(y, y_Grape)]
,'EEE':[
method5(y, y_Apple),
method5(y, y_Banana),
method5(y, y_Pineapple),
method5(y, y_Melon),
method5(y, y_Orange),
method5(y, y_Grape)]
}