#! /usr/bin/python3 # -*- coding:UTF-8 -*- def print_more(): print('该函数可以输出多条语句,我是第一条。') print('我是第二条') print('我是第三条') print_more() #调用函数