我正在尝试在找到Google时插入“\ n”。
Google(12,AB12,XYZ,A2)
注意:Google内部的参数是动态的。
我尝试过:
Str=re.sub(r"Google(.*)",r"Google(.*)\n",str)
目前我得到的是:
Google(.*) followed by newline
我想要的是:
Google(12,AB12,XYZ,A2) followed by newline
答案 0 :(得分:0)
这会有用吗?
google = "Google(12,AB12,XYZ,A2)"
googleWithNewLine = "{0}\n".format(google)
print(googleWithNewLine)