10 2023 档案
Python 有用的资源 中文手册等
摘要:Python 有用的资源 以下资源包含了 Python 有关的网站、书籍和文章。 相关网站 Python 3.6.3 中文手册 Python3 最新文档 Python 2.X 版本的教程 Python 算法学习 相关书籍: 父与子的编程之旅 Python 学习手册 Python编程 从入门到实践 利 阅读全文
posted @ 2023-10-09 11:34 PieBridge 阅读(15) 评论(0) 推荐(0)
配置Python国内pip源
摘要:使用按键win+e打开文件管理器,在上方路径栏输入: %APPDATA% 查看此目录下是否有pip目录,如果没有则需要创建,并在pip目录下以文本方式添加pip.ini文件。写入内容为 [global] index-url = https://pypi.tuna.tsinghua.edu.cn/si 阅读全文
posted @ 2023-10-07 23:44 PieBridge 阅读(194) 评论(0) 推荐(0)
用Python画函数的曲线
摘要:# coding:utf8 import matplotlib.pyplot as pltimport numpy as np # 先获取一个图表fig = plt.figure()stringabc = "test" # 设置x,y坐标轴的刻度显示范围plt.xlim(-7, 7)plt.ylim 阅读全文
posted @ 2023-10-07 21:20 PieBridge 阅读(168) 评论(0) 推荐(0)
Python 使用VSCode配置代码智能提示的方法(numpy)
摘要:1、安装插件 需要安装的插件包括:Python (Microsoft)、Python Extension Pack (Don Jayamanne)、Pylance (Microsoft) 安装方法: 1)按Ctrl+Shift+X键,打扩展插件安装界面 2)搜索到需要安装的插件,然后点击 "安装" 阅读全文
posted @ 2023-10-07 17:56 PieBridge 阅读(2107) 评论(0) 推荐(0)
Windows中安装python包的方法
摘要:用numpy举例说明: 如果不需要代理:直接运行pip install numpy C:\Users\administrator>pip install numpy 如果需要代理:pip --proxy 代理地址 install numpy C:\Users\administrator>pip -- 阅读全文
posted @ 2023-10-07 09:35 PieBridge 阅读(92) 评论(0) 推荐(0)