代码:
###time.sleep函数 from time import sleep def wenhou(x): sleep(5) print('how') sleep(5) print('are') sleep(5) print('you') sleep(5) print(x) sleep(5) print('maybe,you are tired,have a rest') wenhou('yunjinqi')
代码:
###time.sleep函数 from time import sleep def wenhou(x): sleep(5) print('how') sleep(5) print('are') sleep(5) print('you') sleep(5) print(x) sleep(5) print('maybe,you are tired,have a rest') wenhou('yunjinqi')