gpt4 book ai didi

python - 字符串连接和格式化 | Python

转载 作者:太空宇宙 更新时间:2023-11-04 08:03:03 26 4
gpt4 key购买 nike

word1 = input("Random Name (ex. Ryan):")
word2 = input("Your name (ex. why do you need an example of your name?):")

print("To:", word1, "@gmail.com")
print("From:", word2, "@outlook.com")

现在您几乎需要忽略除单词 1 和单词 2 之外的所有内容。

我只是想知道为什么输出是

To:name @gmail.com  

而不是 To:name@gmail.com

提前谢谢大家!

最佳答案

你可以做到

print("To:" + word1 + "@gmail.com")

或者

print("To:%s@gmail.com" % word1) 

或者

print("To:{}@gmail.com".format(word1)) 

或者按照评论中的建议:

print("To:{0:s}@gmail.com".format(word1))

以你想要的方式打印值

执行 print(some_val, some_val2, some_val3, ...) 将在这些值之间添加一个空格。

关于python - 字符串连接和格式化 | Python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36637015/

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