
python
Cheryl71
这个作者很懒,什么都没留下…
展开
-
macbook Python Turtle Graphics黑屏
import turtle# 定义圣诞树的绿叶函数def tree(d, s): if d <= 0: return turtle.forward(s) tree(d - 1, s * .8) turtle.right(120) tree(d - 3, s * .5) turtle.right(120) tree(d - 3, s * .5) turtle.right(120) turtle.backwar原创 2021-12-16 15:24:25 · 5601 阅读 · 8 评论 -
python: ‘import‘ 不是内部或外部命令,也不是可运行的程序 或批处理文件;`xxx is not a supported wheel on this platform.`
python安装依赖包时,依赖包链接遇到以下问题:d:\programs\python\python39\python.exe -m pip install --upgrade pip执行 pip install python_ldap-3.3.1-cp37-cp37m-win_amd64.whl 时,报错:D:\Programs>pip install python_ldap-3.3.1-cp37-cp37m-win_amd64.whlERROR: python_ldap-3.3.1-原创 2021-04-02 17:07:24 · 14040 阅读 · 0 评论