mylifelist单词意思?
应该选择A语句my_list=[s.lower() for s in 'Life is short, you need python.'.split(' ')]是以空格为分隔符,执行后my_list应该是这样:['life', 'is', 'short,', 'you', 'need', 'python.']'short' in my_list是假,my_list中有一个short,注意后面有一个逗号my_list[5]就不用说了,是python