Discuss / Python / 看了下两楼的感觉自己不会结合上面的只是内容惭愧

看了下两楼的感觉自己不会结合上面的只是内容惭愧

Topic source

B丨a丶Ck

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

-- coding: utf-8 --

L = [['Apple', 'Google', 'Microsoft'], ['Java', 'Python', 'Ruby', 'PHP'], ['Adam', 'Bart', 'Lisa']]

打印Apple

print(L[0][0])

打印Python

print(L[1][1])

打印Lisa

print(L[-1][-1])

B丨a丶Ck

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

-- coding: utf-8 --

L = [['Apple', 'Google', 'Microsoft'], ['Java', 'Python', 'Ruby', 'PHP'], ['Adam', 'Bart', 'Lisa']] print('# 打印Apple',L[0][0], '# 打印Python',L[1][1], '# 打印Lisa',L[-1][-1],sep='\n')

追梦科学

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

#markdown

##mmmm

###fjdkfdj


  • 1

Reply