上一页 1 ··· 5 6 7 8 9 10 11 12 下一页
摘要: 像素画: 需要用到的包: 进度条:progressbar pip install progressbar -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com excel:操作包openpyxl pip 阅读全文
posted @ 2021-02-17 20:39 BugMiaowu2021 阅读(451) 评论(0) 推荐(0) 编辑
摘要: 源码: 1 drawLine(draw) 画一条线 2 drawDight(dight) 画一个数字 3 drawDate(date) 画一组数字 4 import turtle, time 5 6 7 def drawLine(draw): 8 turtle.pendown() if draw e 阅读全文
posted @ 2021-02-17 18:33 BugMiaowu2021 阅读(355) 评论(0) 推荐(0) 编辑
摘要: 源码: 1 import numpy as np 2 import matplotlib.pyplot as plt 3 import math 4 import mpl_toolkits.mplot3d 5 import tensorflow.compat.v1 as tf 6 tf.disabl 阅读全文
posted @ 2021-02-17 12:45 BugMiaowu2021 阅读(440) 评论(0) 推荐(0) 编辑
摘要: 有时候发现文件名拼写错误需要更改文件名,直接在pycharm更改即可。 选中要更改的文件右键 -> Refactor ->Rename 输入要修改成的名字,点Refactor即可: 阅读全文
posted @ 2021-02-17 12:06 BugMiaowu2021 阅读(895) 评论(0) 推荐(0) 编辑
摘要: 源码: 1 import numpy as np 2 import matplotlib.pyplot as plt 3 import math 4 5 6 def normal_distribution(x, mean, sigma): 7 return np.exp(-1 * ((x - mea 阅读全文
posted @ 2021-02-17 11:47 BugMiaowu2021 阅读(247) 评论(0) 推荐(0) 编辑
摘要: 问题提示: AttributeError: module ‘tensorflow’ has no attribute ‘InteractiveSession’ 或者: AttributeError: module ‘tensorflow’ has no attribute ‘placeholder’ 阅读全文
posted @ 2021-02-17 09:39 BugMiaowu2021 阅读(1053) 评论(0) 推荐(0) 编辑
摘要: 问题:No module named ‘sklearn’ 解决办法: 如果 pip install sklearn安装失败,换成国内的源就好了,比如: pip install sklearn -i https://pypi.tuna.tsinghua.edu.cn/simple 安装成功! 国内的源 阅读全文
posted @ 2021-02-17 09:18 BugMiaowu2021 阅读(8574) 评论(0) 推荐(1) 编辑
摘要: 问题:ModuleNotFoundError: No module named ‘matplotlib’ 解决办法: round 1:打开PyCharm,点击File->Settings,点击弹出界面的“+”号: 输入:matplotlib ,点下面的Install Package,等待一段时间,安 阅读全文
posted @ 2021-02-17 09:15 BugMiaowu2021 阅读(5778) 评论(0) 推荐(0) 编辑
摘要: 写在前面:以前遇到问题,就搜教程解决下,很多教程都是原封不动的复制,有的复制的图都没了,格式乱糟糟的,这样的教程会浪费很多时间。现在就想着把问题和解决方法自己记录下来,连同一路踩的坑也记下来。这样以后再遇到同样的问题搜自己的博客就可以了。因为我发出来的内容都是自己实践过的,配图也都是自己截取的,过程 阅读全文
posted @ 2021-02-16 21:46 BugMiaowu2021 阅读(2769) 评论(0) 推荐(0) 编辑
摘要: 源码: 1 import turtle 2 class Stack: 3 def __init__(self): 4 self.items = [] 5 def isEmpty(self): 6 return len(self.items) == 0 7 def push(self, item): 阅读全文
posted @ 2021-02-16 13:08 BugMiaowu2021 阅读(138) 评论(0) 推荐(0) 编辑
摘要: Python之turtle库画各种有趣的图及源码 基于Python-turtle库绘制皮卡丘、多边形、星空 基于Python-turtle库绘制哆啦A梦 基于Python-turtle库绘制哆啦A梦和大雄在一起 基于Python-turtle库绘制小猪佩奇 Python之turtle画小狗、狮子头和 阅读全文
posted @ 2021-02-16 10:14 BugMiaowu2021 阅读(319) 评论(0) 推荐(0) 编辑
摘要: 源码: 1 #路飞骷髅 2 import turtle as t 3 #黄底帽子 4 t.pu() 5 t.goto(0,200) 6 t.circle(-130,-80) 7 t.pd() 8 t.colormode(255) 9 t.pensize(5) 10 t.color(242,232,1 阅读全文
posted @ 2021-02-16 10:06 BugMiaowu2021 阅读(864) 评论(0) 推荐(0) 编辑
摘要: 源码: 1 #!/usr/bin/env python 2 3 # -*- coding:utf-8 -*- 4 5 import turtle 6 import time 7 8 # 画心形圆弧 9 10 def hart_arc(): 11 12 for i in range(200): 13 阅读全文
posted @ 2021-02-16 10:03 BugMiaowu2021 阅读(1009) 评论(0) 推荐(0) 编辑
摘要: 源码: 1 import turtle #导入turtle库,turtle库是python的基础绘图库 2 3 turtle.pensize(30) #设置画笔粗细 4 for i in range(30): 5 turtle.circle(i*10,60) #循环画圆30次,每次画60度并且半径增 阅读全文
posted @ 2021-02-16 09:59 BugMiaowu2021 阅读(491) 评论(0) 推荐(0) 编辑
摘要: 源码 1 from turtle import * 2 import turtle as t 3 t.screensize(500, 500) 4 # 【头部轮廓】 5 t.pensize(5) 6 t.home() 7 t.seth(0) 8 t.pd() 9 t.color('black') 1 阅读全文
posted @ 2021-02-16 09:55 BugMiaowu2021 阅读(2457) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 下一页