11 2018 档案

摘要:概述:time库是python中处理时间的标准库 import time time.<b>() 包括3类函数: 常用 时间获取:time.time() 时间戳,浮点数(秒) time.ctime()字符串 time.gmtime()时间元组 时间格式化:time.strftime()时间元组-->字 阅读全文
posted @ 2018-11-25 10:38 walle_ok 阅读(2467) 评论(0) 推荐(1)
摘要:import turtle as t 画笔控制函数: t.penup() 抬起笔 别名:t.pu() t.pendown() 落下笔 别名: t.pd() t.pensize(2) 设置画笔粗细 别名:t.width(width) Example: >>> pensize() 1 >>> pensi 阅读全文
posted @ 2018-11-04 00:20 walle_ok 阅读(2117) 评论(0) 推荐(1)