Learn Python 007: Lists

python_list = ['ace', 'list ', ['in ', 9, 'another list'], 3, 6, True, False]
# output = python_list[1] + python_list[2][0] + python_list[2][2]
# print(output)
print(python_list[1] + python_list[2][0] + python_list[2][2])

 

posted @ 2017-07-13 21:43  mxyzptlk  阅读(90)  评论(0)    收藏  举报