定义变量的语法:
变量名 = 变量赋值
name="test"
调用变量:
print(name)
变量的规则:
1.变量名只能是字母、数字、下划线的任意组合。不能是特殊字符和中横线:$,-,+
2.变量的第一个字符不能是数字,字符之间不能有空格:name is of
3.变量不能是以下关键字
【‘and’,‘as‘,‘assert‘,‘break‘,‘class‘,‘continue‘,‘def‘,‘elif‘,‘else‘,‘except‘,‘exec‘,‘finally‘,‘for‘,‘from‘,‘global‘,‘if‘,‘import‘,‘in‘,‘is‘,‘lambda‘,
‘not‘,‘or‘,‘pass‘,‘print‘,‘raise‘,‘return‘,‘try,‘while‘,‘with‘,‘yield‘】
4.变量名最好是有含义的,如:name、age、sex
原文:http://blog.51cto.com/11928593/2125301