正文

换行输出函数,可以这样实现: ```python def print_new_line(): print("\n") # 调用函数进行换行 print_new_line() ```