python语法
python语法有下面这些:
一、变量的定义
在编程语言中,存储一个数据,需要用变量进行接收
案例:
java:
变量类型 变量名 = 值
int age =18
js:
var 变量名 = 值
var age = 18
python:
变量名 = 值 age = 18。
查看变量类型。
print(type(age))
二、标识符
1.什么是标识符?
开发人员在程序中自定义的一些符号和名称。
标识符是自己定义的,如变量名 、函数名等。
2.标识符的命名规则
标识符只能由字母、下划线“_”、数字组成。
标识符不能以数字开头。
标识符不能使用关键字。
标识符对大小写敏感。
(建议:标识符命名应“见名知意”)
3:python中的关键字
'False', 'None', 'True', 'and', 'as', 'assert', 'async', 'await', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'nonlocal', 'not', 'or', 'pass', 'raise', 'return', 'try', 'while', 'with', 'yield'
广告 您可能关注的内容 |