gpt4 book ai didi

python - Python 中不需要的空间

转载 作者:行者123 更新时间:2023-11-28 19:43:52 25 4
gpt4 key购买 nike

name = raw_input ("What's your name? ")
print "Hello",name, "!"

它返回以下内容:

What's your name? John
Hello John !

如何让 John 和 !没有出现?

顺便说一下,这是在 Python-2.7 中

最佳答案

使用 str.format() method :

print "Hello {0}!".format(name)

This method of string formatting is the new standard in Python 3, and should be preferred to the % formatting [...] in new code.

关于python - Python 中不需要的空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25843487/

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