#創(chuàng)建文件挡毅,打開(kāi)文件 w:創(chuàng)建文件
# fp = open("hello.txt","w")
# fp.write("hello world")
#讀取文件 r:讀取文件
fp =open("hello.txt","r")
# fp.closed
#新寫(xiě)入類(lèi)容蒜撮,步驟不能更改
fp=open("hello.txt","r+")
#讀寫(xiě)
fp.read()
fp.write("dddddddddddd")
#同步到磁盤(pán),刷新
fp.flush()
#讀寫(xiě)指針移動(dòng)位置
fp.seek(0)
print(fp.read())