摘要: 循环语句 , 体现为空格 range() 阅读全文
posted @ 2020-06-02 21:03 web123bin 阅读(132) 评论(0) 推荐(0)
摘要: #介绍 turtle(海龟)库:入门级的图形绘制函数库,Python的标准库之一。 标准库:Python解释器自带的库 第三方库:需要额外安装的库 海龟位于画布的中心位置,行走的轨迹绘制成了图形。 海龟相当于画笔,由程序控制。可以改变宽度、颜色等等。 #使用 ##setup() 设置窗体的大小及位置 阅读全文
posted @ 2020-06-02 09:32 web123bin 阅读(417) 评论(0) 推荐(0)
摘要: 库引用 扩充Python程序功能的方式 使用import保留字完成,采用<a>.<b>()编码风格 import <库名> <库名>.<函数名>(<函数参数>) 使用from和import保留字共同完成 from <库名> import <函数名> from <库名> import * <函数名>( 阅读全文
posted @ 2020-06-02 09:28 web123bin 阅读(139) 评论(0) 推荐(0)
摘要: and elif import raise global as else in return nonlocal assert except is try True break finally lambda while False class for not with none continue fr 阅读全文
posted @ 2020-06-02 08:42 web123bin 阅读(85) 评论(0) 推荐(0)