欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \UX

程序员文章站 2022-06-15 13:41:13
...

当输入的路径如此是

f_train=open('C:\Users\Administrator\PycharmProjects\天池\ccf_offline_stage1_train.csv')

若出现错误:SyntaxError: (unicode error) ‘unicodeescape’ codec can’t decode bytes in position 2-3: truncated \UXXXXXXXX escape

是因为程序认为”\u“是转义字符,因此出错,改为“\\u

相关标签: python