一、变量
(一) 声明变量
变量名 = 变量值
(二) 变量定义的规则
1、 变量名只能是字母、数字、下划线组合
2、 变量名的第一个字符不能是数字
3、 以下关键字不能声明为变量名
[‘and‘, ‘as‘, ‘assert‘, ‘break‘, ‘class‘, ‘continue‘, ‘def‘, ‘del‘, ‘elif‘, ‘else‘, ‘except‘, ‘exec‘, ‘finally‘, ‘for‘, ‘from‘, ‘global‘, ‘if‘, ‘import‘, ‘in‘, ‘is‘, ‘lambda‘, ‘not‘, ‘or‘, ‘pass‘, ‘print‘, ‘raise‘, ‘return‘, ‘try‘, ‘while‘, ‘with‘, ‘yield‘]
(三) 常量
Python中没有常量的概念,约定变量名为大写的变量作为常量使用
二、字符编码
(一) 发展
ASCII 255 1bytes(1bytes=8位)
→1980 gb2312 7xxx
→1995 GBK1.0 2w+
→2000 GB18030 27XXX
→Unicode 2bytes
→utf-8 en: 1byte zh: 3bytes
(二) 转换
三、注释
单行注视:# 被注释内容
多行注释:""" 被注释内容 """、’’’被注释内容’’’,三引号可打印多行
原文地址:https://www.cnblogs.com/sleeping-cat/p/9224421.html
时间: 2024-10-24 18:21:57