列表 list=['a', 'c', '5', '2', '*'],li=[list],若要获取列表中的元素'c',正确的选项是?( )
li[list][1]
list[1]
li[0][1]
li['list'][1]