摘要:
标准数据类型: 数字 number -整数 整数、负数、0、 二进制 0b开头的串 如:0b110 八进制 0o开头的串 如:0o71 十六进制 0x 开头由0-9 a-f组成的串,如:0xffff 0x53a2 各个进制之间的转换方式: https://jingyan.baidu.com/arti 阅读全文
摘要:
https://docs.python.org/zh-cn/3/tutorial/venv.html cmd下的操作: pip install virtualenv pip install virtualenvwrapper //virtualenvwrapper是virtualenv的拓展包 创建 阅读全文