编写函数showMsg(n,name),输出n行Happy BirthdayXXX
时间: 2024-02-20 08:59:18 浏览: 113
好的,以下是Python代码实现:
```python
def showMsg(n, name):
for i in range(n):
print("Happy Birthday " + name)
```
调用示例:
```python
showMsg(3, "张三")
```
输出结果:
```
Happy Birthday 张三
Happy Birthday 张三
Happy Birthday 张三
```
相关问题
编写函数 showMsg ( n , name ),输出 n 行 Happy Birthday XXX
好的,以下是 Python 代码实现:
```python
def showMsg(n, name):
for i in range(n):
print("Happy Birthday", name)
# 示例
showMsg(5, "John")
```
在上面的示例中,我们调用了 `showMsg` 函数,输入了两个参数 `5` 和 `"John"`,函数会输出五行 `Happy Birthday John`。你可以根据需要修改参数来输出不同数量和不同名字的祝福语。
编写函数showMsg(n, name),它可以输出n行的字符串“Happy Birthday ***”,如果str为“小明“,就是n行的“Happy Birthday 小明”。调用showMsg,输出6行“Happy Birthday 小念”
好的,下面是函数的定义和调用:
```python
def showMsg(n, name):
for i in range(n):
print("Happy Birthday", name)
showMsg(6, "小念")
```
输出结果为:
```
Happy Birthday 小念
Happy Birthday 小念
Happy Birthday 小念
Happy Birthday 小念
Happy Birthday 小念
Happy Birthday 小念
```
阅读全文