作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所需结果:
Give a word: sausage
Give a number: 6
sausage
sausage
sausage
sausage
sausage
sausage
结果获取:
Give a word: sausage
Give a number: 6
sausagesausagesausagesausagesausagesausage
def repeat_this(s, n):
print (s * n)
s = input("Give a word: ")
n = int(input("Give a number: "))
repeat_this(s, n)
最佳答案
使用'\n'.join
将字符串与换行符连接在一起。在这种情况下,我们需要一个包含 n
个 s
副本的列表,这可以通过编写 [s] * n
来实现:
def repeat_this(s, n):
print('\n'.join([s] * n))
关于python - 单词应该一个字一个字地打印在另一行下面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58700439/
我是一名优秀的程序员,十分优秀!