Python基础-----初识及变量(一)

1、python中的变量名可以是字母、数字、下划线的组合;

2、python中的变量名不能以数字开头;

3、python中的变量名不能是关键字('and' | 'as'  | 'assert' | 'break' | 'class' | 'continus' | 'def' | 'elif' | 'else' | 'except' | 'finally' | 'for' | 'global' | 'from' 等 );

4、python中的变量名最好不要与python中的内置的东西重复;

5、python中的变量名最好让人一眼就能看出来代表的是什么;

6、单词与单词连接的变量名可以用下划线(_)来连接。

 

posted @ 2018-08-17 18:31  Meanwey  阅读(205)  评论(0编辑  收藏  举报