gpt4 book ai didi

python - 在字符串中添加一个空格

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

如何在 Python 中添加空格?

例如

print "How many times did " + name + "go here?";

将打印:

How many times didnamego here?"

我怎样才能添加那个空间?

最佳答案

print "How many times did " + name + " go here?"

print "How many times did", name, "go here?"

print "How many times did %s go here?" % name

在这个简单的例子中,首选的形式是第二种。第一个使用连接(如果你想要部分之间多于或少于一个空格,这很有用),第二个使用逗号运算符,在 print 的上下文中用空格连接字符串,第三个使用字符串格式化(旧的style),如果你来自 C、Perl、PHP 等,应该看起来很熟悉。第三种形式是最强大的形式,但在这种简单的情况下,格式字符串的使用是不必要的。

请注意,在 Python 中,行不需要(也不应该)以分号结束。您还可以使用一些 string justification methods在字符串的任一侧或两侧添加几个空格。

关于python - 在字符串中添加一个空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5697378/

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