占位符的理解
n=20
print ("My Name is %s,I am %d years old"%("王三",n))
%S 文字占位 %d,数字占位
相当于
print("My Name is","王三"+",I am is", str(n) ,"years old")
Utf-8 一个汉字3个字节
f=open("haa","r+",encoding="utf-8") 读
f.seek(6) 定光标开始位置 字节 3的倍数
content=f.read(5) 读取字符
print( content)
f.close()
文件的读写追加
读 r rb r+
写 w wb w+
追加 a ab a+