Python-1
在Jupyter 中显示txt文件的内容:
linux ---> !cat tmp.txt
windowx ---> !more tmp.txt
安装 Anaconda
conda ---> 包管理器+环境管理器
pip ---> 包管理器
virtualenv ---> 环境管理器(环境隔离用)
python 编程
交互式(Linux)/批量式
print (“{},{}!”.format("Hello", "World"))
print("%s, %s".%("Hello", "World"))
基本法则
- 大小写不可混用
- 什么是写一行程序 ---> 分号 代码块 ---> 锁紧
%d ---> 整数占位符
%s ---> 字符串
%f ---> 浮点数
%% ---> 百分号
A = [a, b, c] ---> 数组 A[1] = a 改后可改 无hash值
B = (a, b, c) ---> 元组 B[1] = a 不可更改 有hash值
PS : and or not