2017/01/30
Python で Dictionary を List の join みたいに結合文字列にする方法
Python で Dictionary を List のように "," で join する良い方法を探していたら、こんなのを発見。
> 参考
> - [python: dictionary to string, custom format? - Stack Overflow](http://stackoverflow.com/questions/8519599/python-dictionary-to-string-custom-format)
そうか、一回リストにしちゃえばいいわけだ
。
```python
>>> dic={"a":1, "b": 2}
>>> ",".join(["{0}={1}".format(key, value) for (key, value) in dic.items()])
'a=1,b=2'
```
0 件のコメント:
コメントを投稿