目录 一.变量 1.概述 Variables are used to store information to be referenced(引用)and manipulated(操作) in a computer program. 2.声明 (1)命名规则 变量名只能是字母.数字或下划线的任意组合: 第一个不能是数字 关键字不能作为变量名 (2)定义 name1 = 'Lu' name2 = name1 name1 = 'MJJ' print(name1, name2) -->: MJJ Lu…