我有上述错误 s1="some very long string............"
有人知道我在做什么错吗?
我有上述错误 s1="some very long string............"
有人知道我在做什么错吗?
Answers:
您没有"
在行尾放置a 。
"""
如果要执行此操作,请使用:
""" a very long string ......
....that can span multiple lines
"""
在我的情况下,我\r\n
在单引号中包含字典字符串。我取代的所有实例\r
与\\r
和\n
与\\n
它固定我的问题,正确地返回在eval'ed字典逃脱换行符。
ast.literal_eval(my_str.replace('\r','\\r').replace('\n','\\n'))
.....
我遇到了类似的问题。我有一个包含Windows中文件夹路径的字符串,例如C:\Users\
,问题是\
转义字符,因此要在字符串中使用它,您需要再添加一个\
。
不正确: C:\Users\
正确: C:\\\Users\\\
我也有这个问题,尽管这里有答案,但我想在/
不应该有空白的地方对此做一个重要
说明。
就我而言,我使用Windows,因此必须使用双引号而不是单引号。
C:\Users\Dr. Printer>python -mtimeit -s"a = 0"
100000000 loops, best of 3: 0.011 usec per loop
就Mac OS X而言,我有以下陈述:
model.export_srcpkg(platform, toolchain, 'mymodel_pkg.zip', 'mymodel.dylib’)
我收到错误:
File "<stdin>", line 1
model.export_srcpkg(platform, toolchain, 'mymodel_pkg.zip', 'mymodel.dylib’)
^
SyntaxError: EOL while scanning string literal
在我更改为:
model.export_srcpkg(platform, toolchain, "mymodel_pkg.zip", "mymodel.dylib")
有效...
大卫