龙空技术网

Python-1

1号灵灵狗 75

前言:

今天兄弟们对“python1”可能比较关注,小伙伴们都需要知道一些“python1”的相关资讯。那么小编也在网摘上汇集了一些有关“python1””的相关文章,希望大家能喜欢,兄弟们一起来了解一下吧!

在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

标签: #python1