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.
次のようなpythonリストがあります:
list = [] for loop list.append("blah")
私がやりたいことは、このリストを各値をコンマで区切った文字列に変換することです。
どうすればいいですか??
str.join次の方法を使用します。
str.join
','.join(your_list)