1 def name(para)
def myabs(x):
if x>0:
return x
else:
return -x
2 lambda表达式
用于声明匿名函数,既没有名字的小函数
f = lambda x,y,z:x+y+z
print(f(1,2,3)) #
L = [(lambda x:x**2),(lambda x:x**3)]
print(L[0](3),L[1](3)) #(9, 27)
3 类
class Car:
def infor(self):
print("This is a car")
car = Car()
car.infor() #This is a car
4 私有成员与公有成员
两个下划线“__”开头为私有属性,其他为public
5 向文本文件中写入内容
s = "hello world"
with open('sample.txt','a+') as f:
f.write(s)
6 读取文本文件内容
f = open('sample.txt','r')
print(fp.read(5)) #读取前5字节
f = open('sample.txt','r')
while True:
line = f.readline()
if line=='':
break
print line,
f.close()
read()一次性读取全部,适用于小文件
read(size) 每次读取size 个大小,适用于文件大小未知
readlines() 每次读取一行,可以来读配置文件
fp = open(“sample.txt”,w) 直接打开一个文件,如果文件不存在则创建文件
关于open 模式:
w 以写方式打开,
a 以追加模式打开 (从 EOF 开始, 必要时创建新文件)
r+ 以读写模式打开
w+ 以读写模式打开 (参见 w )
a+ 以读写模式打开 (参见 a )
rb 以二进制读模式打开
wb 以二进制写模式打开 (参见 w )
ab 以二进制追加模式打开 (参见 a )
rb+ 以二进制读写模式打开 (参见 r+ )
wb+ 以二进制读写模式打开 (参见 w+ )
ab+ 以二进制读写模式打开 (参见 a+ )
7 os与os.path