gpt4 book ai didi

python - 在 Python 解释器中,返回没有 "'"

转载 作者:太空狗 更新时间:2023-10-29 17:13:08 26 4
gpt4 key购买 nike

在 Python 中,如何返回如下变量:

function(x):
return x

没有 'x' (') 在 x 周围?

最佳答案

在 Python 交互式提示中,如果您返回一个字符串,它会被显示并在其周围加上引号,主要是为了让您知道它是一个字符串。

如果您只是打印 字符串,它不会用引号显示(除非字符串中有 引号)。

>>> 1 # just a number, so no quotes
1
>>> "hi" # just a string, displayed with quotes
'hi'
>>> print("hi") # being *printed* to the screen, so do not show quotes
hi
>>> "'hello'" # string with embedded single quotes
"'hello'"
>>> print("'hello'") # *printing* a string with embedded single quotes
'hello'

如果您确实确实需要移除前导/尾随引号,请使用字符串的.strip方法移除单引号和/或双引号:

>>> print("""'"hello"'""")
'"hello"'
>>> print("""'"hello"'""".strip('"\''))
hello

关于python - 在 Python 解释器中,返回没有 "'",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1482649/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com