
python
2028
这个作者很懒,什么都没留下…
展开
-
centos8 在线安装 python3
# 安装 epel-release 工具 yum install epel-release # 找到库里面支持的 python3 版本 yum list | grep python3 | more # 安装 yum install python36 # 测试 python3 centos8 没有默认安装python3,而ubuntu1910则默认安装了,以上仅是centos8的安装记录,...原创 2019-10-26 22:28:15 · 5198 阅读 · 0 评论 -
python初步笔记
asdf原创 2013-10-19 02:22:15 · 606 阅读 · 0 评论 -
python基础笔记1
1 运行 1.1 直接在命令行里面运行python命令 1.2 编写 X.py 文件,然后使用python X.py 运行 2 变量 print后面可以跟多个输出 数据类型不用指定,直接在变量名后面赋值即可 然后用 print type(变量名) 可以打印变量名的数据类型 int float str bool… -----------------------原创 2014-03-18 19:35:20 · 988 阅读 · 0 评论 -
The Zen of Python
>>> import this The Zen of Python, by Tim Peters 禅那Python,蒂姆·皮特斯 Beautiful is better than ugly. 悦目媲之厌恶 Explicit is better than implicit. 醒目媲之隐晦 Simple is better than complex. 大道至简 Complex i翻译 2017-06-27 17:18:17 · 404 阅读 · 0 评论 -
python 编程起步基础-笔记
简介: 官网:https://www.python.org/ python是一款易学的通用、动态且高阶的语言 python能够很好地与其它语言交互,也被成为胶水语言 python已经成为一门强大的数据分析语言 python主要的缺点是性能不高 python是一款解释型语言,与R、Ruby、Matlab相似,而与C、C++、Java这些编译型语言差别较大 python用户信奉“过...原创 2018-12-02 18:27:43 · 2200 阅读 · 1 评论