python 在Python 3中将StringIO与csv模块一起使用的示例。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 在Python 3中将StringIO与csv模块一起使用的示例。相关的知识,希望对你有一定的参考价值。

import csv

def as_csv(rows, **fmtparams):
    """Writes a Sequence of str Sequences in CSV format (PY3 only).
    >>> as_csv([('a1', 'a2'), ('b1', 'b2')], lineterminator='\n')
    'a1,a2\nb1,b2\n'
    """
    output = io.StringIO()
    writer = csv.writer(output, **fmtparams)
    writer.writerows(rows)
    return output.getvalue()

以上是关于python 在Python 3中将StringIO与csv模块一起使用的示例。的主要内容,如果未能解决你的问题,请参考以下文章

python 在Python 3中将StringIO与csv模块一起使用的示例。

在python 3中将表情符号转换为Unicode,反之亦然

在 Python 3 中将 int 转换为字节

在 Python 3 中将异常转换为字符串

在 PyCharm 中将 python 2 代码转换为 3

如何在 PySide 和 Python 3.X 中将字节写入 QDataStream?