网站推广.NET

网站推广.NET

python合法标识符要求是什么

来源:互联网

1.不能以数字开头

>>> 2bin=2  File "<stdin>", line 1    2bin=2       ^SyntaxError: invalid syntax

2.不能包含非法字符

>>> ssd@f=1  File "<stdin>", line 1    ssd@f=1       ^SyntaxError: invalid syntax

3.数字不能作为标识符

>>> 123=&#39;wdsa&#39;SyntaxError: can&#39;t assign to literal

4.不能包含空格

立即学习“Python免费学习笔记(深入)”;

>>> fds fds=1  File "<stdin>", line 1    fds fds=1          ^SyntaxError: invalid syntax

5.不能包含运算符

>>> sdf+sdf=1SyntaxError: can&#39;t assign to operator6.python保留关键字不能作为标识符

推荐教程: 《python-tutorials.html" target="_blank">Python教程》

python合法的标识符