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.
'ABCD'文字列をリストに変換したい場合['A','B','C','D']、最も簡単な方法は何ですか?
'ABCD'
['A','B','C','D']
私が考えることができる最も簡単なもの:
>> list('ABCD') ['A', 'B', 'C', 'D']
参照:
ユースケースによっては、それを行う必要さえないかもしれません-文字列はすでに反復可能です:
for c in "ABCD" print c
版画
A B C D