随笔分类 - python
摘要:linux 6 安装python3.7后,使用pip命令出现问题,提示找不到ssl模块,出现错误如下 # pip listPackage Version pip 10.0.1 setuptools 39.0.1 pip is configured with locations that requir
阅读全文
摘要:数字 https://www.runoob.com/python3/python3-number.html python数字数据类型用于存储数值。
阅读全文
摘要:#仅作学习笔记用,皆源于:https://www.runoob.com/python3 运算符 Python语言支持以下类型的运算符: 算术运算符 比较(关系)运算符 赋值运算符 逻辑运算符 位运算符 成员运算符 身份运算符 运算符优先级
阅读全文
摘要:python3基本数据类型 源于:https://www.runoob.com/python3/python3-data-type.html python中的变量不需要声明。每个变量在使用前都必须赋值,变量赋值以后该变量才会被创建。 在python中,变量就是变量,它没有类型,我们所说的”类型“是变
阅读全文
摘要:python3笔记 源于:https://www.runoob.com/python3/python3-tutorial.html Python 是一个高层次的结合了解释性、编译性、互动性和面向对象的脚本语言。 基础语法 编码 默认情况下 ,python3源码文件以UTF-8编码,所有字符串都是un
阅读全文