题解 | #参数解析# 特定字符替换、分割
参数解析
https://www.nowcoder.com/practice/668603dc307e4ef4bb07bcd0615ea677
# 空格前面的子串,有奇数个" ,则该空格不变;若有偶数个字符,则该空格替换为两个空格,只有一个空格的地方不用划分,大于1个空格的地方才需要划分 s=input() #print(s) s1='' for i in range(len(s)): if s[i]==' ': if s[:i].count('"')%2==0: s1 += ' ' elif s[:i].count('"')%2==1: s1 += ' ' elif s[i]=='"': s1 += '' else: s1 += s[i] #print(s1) s1=s1.split(' ') # 此处s1打印出来 \成为\\,\表转义符,\\表示反斜杠符号本身,没有转义含义,不影响最终结果 print(len(s1)) for i in s1: print(i)