gpt4 book ai didi

python - 在python中乘以变量时如何添加空格

转载 作者:太空宇宙 更新时间:2023-11-04 10:43:44 27 4
gpt4 key购买 nike

这是我的代码

print("Type in another set of words")
x = input()
print("Now type in how many times you want it to appear (WHOLE NUMBERS ONLY!)")
c = int(input())
print(x * c)

我想在每次单词相乘之间添加一个空格。这可能吗?

最佳答案

使用str.join在字符串序列之间放置一个空格:

print(' '.join([x] * c))

关于python - 在python中乘以变量时如何添加空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18938965/

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