标签:string erro ted 字符 文字 python error: replace cte
1.ValueError: unsupported format character ‘D‘ (0x44) at index 16
string0 = "123456" string = "string%s" %string0 上一句改成:string = "string%s".replace(‘%s‘,string0)
2.输出内容到命令行,中文字符是乱码
1>在输出内容后面加上.decode(‘utf-8‘)
标签:string erro ted 字符 文字 python error: replace cte
原文地址:http://www.cnblogs.com/xiaolangjun/p/7554748.html