编写函数 showMsg ( n , name ),输出 n 行 Happy Birthday XXX
时间: 2024-02-20 22:59:04 浏览: 120
以生日快乐为主题的程序
4星 · 用户满意度95%
好的,以下是 Python 代码实现:
```python
def showMsg(n, name):
for i in range(n):
print("Happy Birthday", name)
# 示例
showMsg(5, "John")
```
在上面的示例中,我们调用了 `showMsg` 函数,输入了两个参数 `5` 和 `"John"`,函数会输出五行 `Happy Birthday John`。你可以根据需要修改参数来输出不同数量和不同名字的祝福语。
阅读全文