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

Categories

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

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

1 Answer

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
"""

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...