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

时间:2021-11-27 14:07:11

Wondering how to write unreadable ^A into a file using Python. For unreadable ^A, I mean when we use command "set list" in vi, we can see unreadable character like ^I for '\t', $ for '\n'.

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

thanks in advance, Lin

林先生,提前谢谢

2 个解决方案

#1


If you know the character code, you can output it using the chr() function. For example:

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

>>> chr(97)
'a'

Do you mean the Start of Header character?

你的意思是标题的开头字符?

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

If so, then use this:

如果是这样,那么使用这个:

chr(1)

#2


Another way to do it is '\1'. Cheers!

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

#1


If you know the character code, you can output it using the chr() function. For example:

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

>>> chr(97)
'a'

Do you mean the Start of Header character?

你的意思是标题的开头字符?

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

If so, then use this:

如果是这样,那么使用这个:

chr(1)

#2


Another way to do it is '\1'. Cheers!

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