python--基础

ptython

1+1 人能读懂的代码
000101110  翻译后的
cpu运行

python 解释

1+1 0100001 运行
2+2  0010001 运行
python3 进入python3交互式解释器
python  进入python2的交互式解释器
ctrl+d 退出
ipython3 支持linux命令  
python3 不支持linux命令
linux 别名
TypeError: must be str, not int   字符串和整数不能相加
SyntaxError: invalid syntax    语法错误
str -----> int 例如 a = "12"     int(a)   12    首要条件是 就必须一个字符串类型的数字
float ----> int 例如 a = 12.8   int(a)   12
float ----> int 例如 a = 12.2   int(a)   12
bool -----> int  a = True   int(a)       1
bool -----> int  a = False   int(a)       0
int ------> str  a = 12   str(a)       "12"
int ------> float  a = 12  float(a)    12.0 
int ------> bool    a = 1   bool(a)   True
int ------> bool    a = 0   bool(a)   False
print() 把内容输出到屏幕上
input() 把键盘输入内容 输入到电脑中

制表符

\n 换行
\t 空格

你可能感兴趣的:(python--基础)