m = input() index_ = [] #计算所有"的索引 for i,j in enumerate(m): if j == '"': index_.append(i) result = [] if len(index_)>0: #双引号前的字符串放到列表result中 result.append(m[:index_[0]]) #双引号两两成对放到列表result中 for i in range(len(index_)): if i % 2 == 0: ...