题解 | #参数解析#
参数解析
https://www.nowcoder.com/practice/668603dc307e4ef4bb07bcd0615ea677
import re
ps = input()
# print(*re.findall("\"[^\"]*\"",ps))
kl = re.findall("\"[^\"]*\"",ps)
for i,s in enumerate(kl):
ps = ps.replace(s,str(i))
ps = ps.split()
print(len(ps))
for s in ps:
if s.isdigit():
print(kl[int(s)].replace("\"",''))
else:
print(s)
阿里云工作强度 603人发布