摘要: sorted()排序详解 http://wiki.python.org/moin/HowTo/Sorting?highlight=%28howto%29#The_Old_Way_Using_the_cmp_Parameter 一个列表存储了由数字组成的 字符串,比如 '21',如何对他们按照数字大小 阅读全文
posted @ 2018-10-21 20:09 中国人醒来了 阅读(6081) 评论(0) 推荐(0) 编辑
摘要: Python3 turtle安装和使用教程 Turtle库是Python语言中一个很流行的绘制图像的函数库,想象一个小乌龟,在一个横轴为x、纵轴为y的坐标系原点,(0,0)位置开始,它根据一组函数指令的控制,在这个平面坐标系中移动,从而在它爬行的路径上绘制了图形。 1 安装turtle Python 阅读全文
posted @ 2018-10-21 14:56 中国人醒来了 阅读(2020) 评论(0) 推荐(0) 编辑
摘要: Python3之turtle模块的使用 <!-- flowchart 箭头图标 勿删 --> 直接扣代码就行: import turtle as t t.pensize(4) t.hideturtle() t.colormode(255) t.color((255, 155, 192), "pink 阅读全文
posted @ 2018-10-21 11:28 中国人醒来了 阅读(407) 评论(0) 推荐(0) 编辑
摘要: Python3安装turtle提示错误:Command "python setup.py egg_info" failed with error code 1 Python3.5安装turtle: pip3 install turtle 提示错误: Collecting turtle Using c 阅读全文
posted @ 2018-10-21 10:36 中国人醒来了 阅读(45129) 评论(0) 推荐(2) 编辑