- 目的
- pythonにてリスト形式の配列を要素ごとに{}で括って出力する
- 結論
- 以下のソースを実行することで目的のような出力が実現できる
- ソース
-
# INPUTデータ # ['longbody', 'lowres', 'bad anatomy'] with open(OUT_PUT_LILE, 'w') as file: # ファイルにテキストを書き込む custom_output_data = '{' + '},{'.join(undesired_content) + '}' file.write(custom_output_data) # 出力内容 # {longbody},{lowres},{bad anatomy}