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.
簡単な質問です。このようなリストをどのように変換しますか:
["foo","banana","apple"]
の中へ
[["foo"],["banana"],["apple"]]
ありがとう !
>>> [[el] for el in ["foo","banana","apple"]] [['foo'], ['banana'], ['apple']]