编写pytnon程序,编写函数:输出10个指定字符,字符通过参数传递
时间: 2024-04-29 09:27:03 浏览: 64
好的,以下是函数的代码:
```python
def print_characters(char, num):
for i in range(num):
print(char, end='')
```
使用时,将想要输出的字符和输出的数量作为参数传递进去即可,例如要输出10个“*”字符,可以这样调用函数:
```python
print_characters('*', 10)
```
输出结果为:
```
**********
```
阅读全文