标签:continue python finally 关联 运算 内存管理 命名 yield 垃圾回收
变量名原则:先定义,后引用
定义:
name="william"
age=18
变量三大组成部分:
变量名:用来找变量
赋值符号:将变量值的内存地址绑定给变量名
变量值:就是我们存储的数据,或者说记录的事物的状态
引用:
按道理print(age)出来的是一个地址
但在python中为了方便它直接把地址关联的内容拽出来了
命名的大前提:变量名的命名应该见名知意
age=18
level = 18
count = 18
命名的规范:
1、是由字母,数字,下划线组成
2、不能以数字开头
3、不能以Python的关键字命名
[‘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‘]
标签:continue python finally 关联 运算 内存管理 命名 yield 垃圾回收
原文地址:https://www.cnblogs.com/cnblogswilliam/p/14151846.html