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)) #6 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() 每次读取一行,可以来读配置文件