Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直在尝试学习 Python,但遇到了一个非常有趣的问题。我似乎找不到正确的双引号来表示字符串。
print(¨Hello, World!¨) Traceback (most recent call last): File "<string>", line 1, in <fragment> Syntax Error: print(¨Hello, World!¨): <string>, line 113
那些有趣的标记和我能得到的一样接近。这似乎只发生在 Wing IDE 中。想法?
虽然它看起来类似于双引号,¨但不是双引号。您的 IDE 似乎以某种方式将双引号转换为¨(不同的字符)。
¨