新手求助
提示Python 3.10.0 (tags/v3.10.0:b494f59, Oct4 2021, 19:00:18) on win32Type "help", "copyright", "credits" or "license" for more information.
>>> 'Ilovefish.com
File "<stdin>", line 1
'Ilovefish.com
^
SyntaxError: unterminated string literal (detected at line 1)
>>> 'I love fish.com
File "<stdin>", line 1
'I love fish.com
^
SyntaxError: unterminated string literal (detected at line 1)
>>> I love fish.com
File "<stdin>", line 1
I love fish.com
^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
这个问题是怎么解决?求大神 字符串缺少回头的引号,这么明显真的没看出来吗 所有语言里字符串都需要引号,没有引号会被认为是变量,但是含有空格的变量又是所有语言都不允许的 本帖最后由 干虾皮 于 2021-12-9 00:29 编辑
Ilovefish.com是一个字符串,字符串的标志是一对单引号,双引号或者三引号,第一个和第二个您只有一个单引号,第三个您直接米有任何引号您可以尝试
'Ilovefish.com'
"Ilovefish.com"
'''Ilovefish.com'''
干虾皮 发表于 2021-12-9 00:27
Ilovefish.com是一个字符串,字符串的标志是一对单引号,双引号或者三引号,第一个和第二个您只有一个单引 ...
好的 如果您的问题已经解决请把我的答案采纳为最佳答案,非常感谢! LU试说新语 发表于 2021-12-9 11:11
好的
{:5_95:}
页:
[1]