Discuss / Python / 交作业

交作业

Topic source

龅牙牧师

#1 Created at ... [Delete] [Delete and Lock User]

#下面是作业时间

L=[

    ['apple','Google','micrsoft'],

    ['jave','python','ruby','PHP'],

    ['adam','bart','lisa']

]

#打印APPLE:

print(L[0][0])

#打印pYTHON:

print(L[1][1])

#打印Lisa:

print(L[2][2])

#选择题答案:A D E


  • 1

Reply