标签:logs str 需要 sage raw 对象 输出 python pytho
一般字符串都是已unicode编码,且和C类似,可以使用\来转义,比如
a = "test\ntest" print(a)
输出
test test
在字符串前面加上一个 r 表示该字符串为raw string,不识别转义。
b = r"test\ntest" print(b)
输出
test\ntest
这在使用正则表达式的时候很有用。
生成字节序列对象bytearray。这在需要按字节序列发送数据时有用,比如网络发送
message = b"GET / HTTP/1.1\r\n\r\n" s.sendall(message)
message的类型不再是str,而是bytes了。
<class ‘bytes‘>
标签:logs str 需要 sage raw 对象 输出 python pytho
原文地址:http://www.cnblogs.com/WeyneChen/p/6670647.html