如何在Python中将不可读的^ A写入输出文件?

时间:2015-05-06 22:48:01

标签: python file

想知道如何使用Python将不可读的^ A写入文件。对于不可读的^ A,我的意思是当我们使用命令" set list"在vi中,我们可以看到不可读的字符,例如^ I for' \ t',$ for' \ n'。

提前谢谢, 林

2 个答案:

答案 0 :(得分:4)

如果您知道字符代码,可以使用chr()函数输出。例如:

>>> chr(97)
'a'

你的意思是Start of Header字符吗?

enter image description here

如果是,请使用此:

chr(1)

答案 1 :(得分:3)

另一种方法是'\ 1'。干杯!