摘要: 基于Python脚本 iOS 工程的自动打包 导入的库 import os import requests import webbrowser import subprocess import shutil appFileFullPath = 'XXX.app'# .app的绝对路径(iOS工程的绝 阅读全文
posted @ 2018-05-18 17:49 tryFighting 阅读(291) 评论(0) 推荐(0) 编辑
摘要: %matplotlib inlineimport matplotlib.pyplot as plt import numpy as npx = range(100) y = [val**2 for val in x] plt.plot(x,y)#plotting x and y 输出效果: 阅读全文
posted @ 2018-05-18 17:41 tryFighting 阅读(4023) 评论(0) 推荐(0) 编辑
摘要: numpy Python科学计算的基础包 安装工具 pip3 install numpy pandas包含了高级的数据结构和操作工具,它们使得Python数据分析更加快速和容易。 安装工具 pip3 install pandas matplotlib 强大的绘制库 pip3 install pand 阅读全文
posted @ 2018-05-18 17:09 tryFighting 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 推荐使用Python3 版本 安装pip3 版本 打开终端输入,安装jupyter notebook(ipython4之后命名) pip3 install jupyter notebook 启动jupyter 终端输入 jupyter notebook 在浏览器运行Python 代码可以运行 比如 阅读全文
posted @ 2018-05-18 17:02 tryFighting 阅读(1935) 评论(0) 推荐(0) 编辑