python基础5-函数类和文件操作

Posted hqc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python基础5-函数类和文件操作相关的知识,希望对你有一定的参考价值。


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




以上是关于python基础5-函数类和文件操作的主要内容,如果未能解决你的问题,请参考以下文章

python基础训练营05

Python基础模块

python全栈开发目录

python基础-第七篇-7.1初识类和对象

Python基础lpthw - Exercise 40 模块类和对象

2022年最新Python大数据之Python基础文件的操作与类