如何在 python3 中的 '\+234' 字符串中提取 '\+'
how to extract '\+' in string of '\+234' in python3
我有一个 str = '\+234'
的字符串,我想从中创建另一个 '\+'
的字符串。语句 '\' + str[1]
给出以下错误:
SyntaxError: EOL while scanning string literal
但是 str[1]
是 '+'
。为什么两个字符不能连接?
因为\
是python中的转义字符。尝试 '\'+str[1]
那是因为“\”是转义字符。
尝试使用双\代替。
我有一个 str = '\+234'
的字符串,我想从中创建另一个 '\+'
的字符串。语句 '\' + str[1]
给出以下错误:
SyntaxError: EOL while scanning string literal
但是 str[1]
是 '+'
。为什么两个字符不能连接?
因为\
是python中的转义字符。尝试 '\'+str[1]
那是因为“\”是转义字符。
尝试使用双\代替。