自定义print函数
时间: 2024-03-01 10:45:10 浏览: 70
自定义函数实现单片机任意串口的printf()
好的,下面是自定义print函数的代码示例:
```python
def custom_print(*args, sep=' ', end='\n'):
output = ''
for arg in args:
output += str(arg) + sep
output = output[:-len(sep)] + end
print(output, end='')
```
这个自定义print函数可以接受多个参数,并且可以自定义分隔符和结尾符。
阅读全文