美文网首页
python--基础

python--基础

作者: Tellme丶 | 来源:发表于2018-07-15 20:16 被阅读0次

    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--基础

          本文链接:https://www.haomeiwen.com/subject/hpxmpftx.html