【发布时间】:2015-02-20 13:51:14
【问题描述】:
我需要帮助。是否有任何选项如何禁用隐式转换特殊字符? 我的意思是:
#this is normal way with implicit convert special character
value = '\x55'
print value
>>> U
#and I would like to work with this value like with a string
print value
>>> \x55
【问题讨论】:
-
类似
print r'\x55'? -
@ŠimonKostolný:您能否接受一个答案以将问题标记为已解决?