Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有要在列表中转换的文本
"app and a.b.c.d"
输出应该是
["app", "and", "a.b.c.d"]
>>> "app and a.b.c.d".split() ['app', 'and', 'a.b.c.d']