""" 题目:暂停一秒输出。 程序分析:使用 time 模块的 sleep() 函数。 http://www.runoob.com/python/python-date-time.html Python 中提供了对时间日期的多种多样的处理方式,主要是在 time 和 datetime 这两个模块里。今天稍微梳理一下这两个模块在使用上的一些区别和联系。 time 在 Python 文档里,tim... Read More
""" 题目:输出 9*9 乘法口诀表。 """ def answer1(): """ 自己用最普通的双重循环来输出 :return: """ print("输出一:") for i in range(1, 10): for j in range(1, i + 1): print("%d x %d =%2... Read More