Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
318 views
in Technique[技术] by (71.8m points)

python - python:SyntaxError:扫描字符串文字时停产(python: SyntaxError: EOL while scanning string literal)

I have the above-mentioned error in s1="some very long string............"

(我在s1="some very long string............"s1="some very long string............"上述错误s1="some very long string............")

Does anyone know what I am doing wrong?

(有人知道我在做什么错吗?)

  ask by l--''''''---------'''''''''''' translate from so

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You are not putting a " before the end of the line.

(您无需在行尾添加" 。)

Use """ if you want to do this:

(如果要执行此操作,请使用""")

""" a very long string ...... 
....that can span multiple lines
"""

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...