gpt4 book ai didi

python - 如何在 python 中包含引号?

转载 作者:太空宇宙 更新时间:2023-11-03 12:48:37 24 4
gpt4 key购买 nike

预期结果:

What is your name? *name*
So your name is 'name' huh?

代码:

name = input("What is your name? ")
print('So your name is ' , 'name' ,'?')

我的代码的第二行需要帮助!

最佳答案

试试这个:

name = input("What is your name? ") 
print("So your name is '{0}'?".format(name))

要解决此类问题,python 字符串中只允许使用单引号 ' 和双引号 "

另请注意,我使用了 string.format()函数来格式化字符串,否则它会很难看,看起来像:

print("So your name is '" + name + "'?")

关于python - 如何在 python 中包含引号?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20541110/

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