1.1 编程风格
语法要求
缩进同一
[root@k8s-master data]# cat hello.py def main(): print 'hello' print 'world' main() [root@k8s-master data]# python hello.py hello world [root@k8s-master data]# cat hello.py def main(): print 'hello' print 'world' main() [root@k8s-master data]# python hello.py world hello
变量
l 标识符的第一个字符必须是字母表中的字母(大写或小写)或者一个下划线(‘_’)
l 标识符名称的其它部分可以由字母(大写或小写)、下划线(‘_’)或数字(0-9)组成
l 标识符名称是对大小写敏感的。例如 name和Name不是一个标识符。
l 有效标识符:i、_my_name、name_23和a1b2_c3
l 无效标识符:2things、my-name
常量
所谓常量是指不变的变量
[root@k8s-master data]# cat abc.py a=2 b=3 c=a a=4 print a print c [root@k8s-master data]# python abc.py 4 2
1.1.1 数据类型(按特征划分)
数字类型:整形、非整形
整形:布尔型、长整型、标准整形
>>> type(21) <type 'int'>
非整形:双精度浮点型、复数、decimal(不是内建类型)
>>> type(3.14) <type 'float'>
序列类型:字符串(str)、元组(tuple)、列表(list)
>>> name='LL' >>> type(name) <type 'str'> >>> name_list=['alex','real','erion'] >>> type(name_list) <type 'list'>
映像类型:字典(dict)
>>> name={'LL':[28,'IT']} >>> name['LL'] [28, 'IT'] >>> type(name) <class 'dict'>
集合类型:可变集合(set)、不可变集合(frozenset)
1.1.2 数据类型(按可变性划分)
可哈希的,不可变数据类型
数字类型
字符串(str)
不可变集合(frozenset)
元组(tuple)
可变数据类型
字典(dict)
列表(list)
可变集合(set)
1.1.3 Python运算符
运算符 |
描述 |
实例 |
+ |
加 - 两个对象相加 |
a + b 输出结果 30 |
- |
减 - 得到负数或是一个数减去另一个数 |
a - b 输出结果 -10 |
* |
乘 - 两个数相乘或是返回一个被重复若干次的字符串 |
a * b 输出结果 200 |
/ |
除 - x除以y |
b / a 输出结果 2 |
% |
取模 - 返回除法的余数 |
b % a 输出结果 0 |
** |
幂 - 返回x的y次幂 |
a**b 为10的20次方, 输出结果 100000000000000000000 |
// |
取整除 - 返回商的整数部分(向下取整) |
>>> 9//2 4 >>> -9//2 -5 |
a=10 b=20
>>> 1 + 1 * 3/2
2
>>> 1 +1 * 3.0/2
2.5
1.1.4 Python比较符
运算符 |
描述 |
实例 |
== |
等于 - 比较对象是否相等 |
(a == b) 返回 False。 |
!= |
不等于 - 比较两个对象是否不相等 |
(a != b) 返回 true. |
<> |
不等于 - 比较两个对象是否不相等 |
(a <> b) 返回 true。这个运算符类似 != 。 |
> |
大于 - 返回x是否大于y |
(a > b) 返回 False。 |
< |
小于 - 返回x是否小于y。所有比较运算符返回1表示真,返回0表示假。这分别与特殊的变量True和False等价。 |
(a < b) 返回 true。 |
>= |
大于等于 - 返回x是否大于等于y。 |
(a >= b) 返回 False。 |
<= |
小于等于 - 返回x是否小于等于y。 |
(a <= b) 返回 true。 |
1.1.5 Python逻辑运算
运算符 |
逻辑表达式 |
描述 |
实例 |
and |
x and y |
布尔"与" - 如果 x 为 False,x and y 返回 False,否则它返回 y 的计算值。 |
(a and b) 返回 20。 |
or |
x or y |
布尔"或" - 如果 x 是非 0,它返回 x 的值,否则它返回 y 的计算值。 |
(a or b) 返回 10。 |
not |
not x |
布尔"非" - 如果 x 为 True,返回 False 。如果 x 为 False,它返回 True。 |
not(a and b) 返回 False |
1.1.6 Python赋值运算符
运算符 |
描述 |
实例 |
= |
简单的赋值运算符 |
c = a + b 将 a + b 的运算结果赋值为 c |
+= |
加法赋值运算符 |
c += a 等效于 c = c + a |
-= |
减法赋值运算符 |
c -= a 等效于 c = c - a |
*= |
乘法赋值运算符 |
c *= a 等效于 c = c * a |
/= |
除法赋值运算符 |
c /= a 等效于 c = c / a |
%= |
取模赋值运算符 |
c %= a 等效于 c = c % a |
**= |
幂赋值运算符 |
c **= a 等效于 c = c ** a |
//= |
取整除赋值运算符 |
c //= a 等效于 c = c // a |
1.1.7 Python位运算符
运算符 |
描述 |
实例 |
& |
按位与运算符:参与运算的两个值,如果两个相应位都为1,则该位的结果为1,否则为0 |
(a & b) 输出结果 12 ,二进制解释: 0000 1100 |
| |
按位或运算符:只要对应的二个二进位有一个为1时,结果位就为1。 |
(a | b) 输出结果 61 ,二进制解释: 0011 1101 |
^ |
按位异或运算符:当两对应的二进位相异时,结果为1 |
(a ^ b) 输出结果 49 ,二进制解释: 0011 0001 |
~ |
按位取反运算符:对数据的每个二进制位取反,即把1变为0,把0变为1 。~x 类似于 -x-1 |
(~a ) 输出结果 -61 ,二进制解释: 1100 0011,在一个有符号二进制数的补码形式。 |
<< |
左移动运算符:运算数的各二进位全部左移若干位,由 << 右边的数字指定了移动的位数,高位丢弃,低位补0。 |
a << 2 输出结果 240 ,二进制解释: 1111 0000 |
>> |
右移动运算符:把">>"左边的运算数的各二进位全部右移若干位,>> 右边的数字指定了移动的位数 |
a >> 2 输出 |
1.2 注释
单行注释
多行注释
[root@k8s-master data]# python print.py print ddd' print 'dddd' print 'ddddd [root@k8s-master data]# cat print.py #print ddd info='''print ddd' print 'dddd' print 'ddddd''' print info
1.3 字符编码
ASSIC >>> ord('A') 65 >>> ord('a') 97 >>> ord('~') 126 Unicode >>> a = 'alex' >>> type(a) <type 'str'> >>> a = u'alex' >>> type(a) <type 'unicode'> >>> a u'alex' >>> name = u'范特西' >>> name u'u8303u7279u897f' >>> print name 范特西 >>> type (name) <type 'unicode'> UTF-8 >>> name.encode('utf-8') 'xe8x8cx83xe7x89xb9xe8xa5xbf' >>> name_utf8=name.encode('utf8') >>> len(name_utf8) 9 >>> len(name) 3 >>> print 'xe8x8cx83' 范 >>> print 'xe7x89xb9' 特 >>> print 'xe8xa5xbf' 西
解码
>>> name = "范特西" >>> name 'xe8x8cx83xe7x89xb9xe8xa5xbf' >>> name.decode('utf-8') u'u8303u7279u897f'
1.4 导入模块
l 什么是模块?
l ImportmoduleName
l From module import sayHi
l Impot module Name as newName
>>> os.system('free -m') total used free shared buff/cache available Mem: 14811 2996 7477 755 4336 10680 Swap: 0 0 0 0
保存执行结果
方法一: >>> os.system('pwd') /data 0 >>> a=os.popen('pwd').read() >>> a '/data '
方法二: >>> import commands >>> b=commands.getstatusoutput('pwd') >>> b (0, '/data')
1.5 用户交互
l raw_input()
l 程序
查询用户 姓名,年龄,性别,工作,工资
以格式化的方式输出
Information of company staff:
Name:xxx
Age:xxx
Sex:xxx
Job:xxx
#!/usr/bib/env python #_*_ coding:utf-8 _*_ name = raw_input ('please input your name: ') sex = raw_input ('sex: ') age = raw_input ('age: ') job = raw_input ('job: ') print ''' Personal information of %s: Name: %s Sex : %s Age : %s job : %s --------------------------- ''' % (name,name,sex,age,job)
1.6 流程控制
1.6.1 If语句
If
elif
else
#!/usr/bib/env python #_*_ coding:utf-8 _*_ name = raw_input ('please input your name: ') sex = raw_input ('sex: ') age = raw_input ('age: ') job = raw_input ('job: ') if age >= 40: msg = 'You are too old!' elif age >= 30: masg = 'You are very good!' else: msg = 'You are too young!' print ''' Personal information of %s: Name: %s Sex : %s Age : %s job : %s --------------------------- %s ''' % (name,name,sex,age,job,msg)
1.6.2 For循环
for n in
#!/usr/bib/env python #_*_ coding:utf-8 _*_ name = raw_input ('please input your name: ') sex = raw_input ('sex: ') age = raw_input ('age: ') job = raw_input ('job: ') real_age = 29 for i in range(10): if age > 29: print 'too smaller!' elif age = 29: print 'You are very good!' break else: msg = 'too bigger!' print ‘You still got %s shots!’ % (10 – i) print ''' Personal information of %s: Name: %s Sex : %s Age : %s job : %s --------------------------- %s ''' % (name,name,sex,age,job)
1.6.3 While循环
#!/usr/bin/env python #coding:utf-8 print_num= input('which loop do you want it tobr?') count =0 while count < 100000000: if count == print_num: print 'There you got the number:', count choice= raw_input('Do you want to continue the loop?(y/n)') if choice == 'n': break else: while print_num <= count: print_num = input('which loop do you want it to be printed out?') print u'已经过了,sx!' else: print 'loop:', count count +=1 else: print 'loop:', count
练习sx
编写登录接口
- 输入用户名密码
- 认证成功后显示欢迎信息
- 输错三次后锁定
#!usr/bin/env python #_*_ coding: utf-8 _*_ import sys retry_limit = 3 retry_count = 0 account_file = 'accounts.txt' lock_file = 'account_lock.txt' while retry_count < retry_limit: #只要重试不超过3次就不断循环 username = raw_input('