字符串str="maixnm"包含"min"和"max"两个单词,下面哪个操作不能将"min"从中找出来?
str1=str[0]+str[2]+str[4]
str1=str[0:-1:2]
str1=str[::2]
str1=str[0:4:2]