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']