1构造函数
number_list = [1,2,3,4] string_list = [‘a’, ‘b’, ‘c’, ‘d’] mix_list = [‘a’, 1, ‘b’, 2]
2访问
string_list[2] #return ‘c’