一、标识符:
- 第一个字符必须是字母表中字母或下划线 “_” 。
例如:
#!/usr/bin/env python
#coding=utf-8
a = 3 _aa = 3 a3 = 3 _aa3 = 3
- 标识符的其他的部分由字母、数字和下划线组成。(模块尽量使用小写命名,首字母保持小写,尽量不要用下划线(除非多个单词,且数量不多的情况,也可使用驼峰式命名法(又名小驼峰命名法)、匈牙利命名法))
- 例如:
sportList = ['basketball','running','boxing'] #驼峰法 又名小驼峰法 sMyName = 'xiaoli' #应为 'xiaoli' 是string 类型,所以在MyName前加上s来表示该变量类型为string 类似这样的叫做 匈牙利命名法 fManHeight = 176.23 #float型; 也是 匈牙利命名法 iAge = 17 # int型; 也是 匈牙利命名法
- 例如:
- 标识符对大小写敏感。
Aa != aa
二、python保留字(关键字)
顾名思义,就是不能把它们用作任何标识符名称的关键字:
>>> import keyword
>>> keyword.kwlist
['False', 'None', 'True', 'and', 'as', 'assert', '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']
三、注释:
单行注释:使用 “#”符号;
多行注释:
'''
now you cann't run this code!
print ("hello world") ''' """
now you cann't run this code!
print ("hello world") """
四、python3 有着严格缩进要求,缩进不正确,则报错:
#单行缩进格式 if True:
print('ok')
else:
print('no good')
if aa=='ok':
print('ok') while count>1000:
if b!='name':
break
else:
print('') #多行缩进:
total = item_one + \ #如果语句很长,可以使用反斜杠(\)来实现多行语句
item_two + \
item_three total = ['item_one', 'item_two', 'item_three',
'item_four', 'item_five']