摘要: 像素画: 需要用到的包: 进度条: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) 编辑