题解 | #参数解析#

参数解析

https://www.nowcoder.com/practice/668603dc307e4ef4bb07bcd0615ea677

# key is to deal with ""
# when flag is off, split on space; when it's on, includes space


s = input() + ' '   # for the last element to be added to the list

f = False
p = ''
l = []

for i in s:
    if i == '"':
        f = not f

    elif not f and i == ' ':
        l.append(p)
        p = ''

    else:
        p += i

print(len(l))
for j in l:
    print(j)

参考题解 | #参数解析-巧妙将一长串分行打印#_钻石王老五的flag开关用法,用list容器处理

全部评论

相关推荐

offer多多的六边形战士很无语:看了你的博客,感觉挺不错的,可以把你的访问量和粉丝数在简历里提一下,闪光点(仅个人意见)
点赞 评论 收藏
分享
10-11 17:30
湖南大学 C++
我已成为0offer的糕手:羡慕
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务