日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > python >内容正文

python

python怎么读写_python怎么读写文件

發布時間:2024/9/27 python 30 豆豆
生活随笔 收集整理的這篇文章主要介紹了 python怎么读写_python怎么读写文件 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

python怎么讀寫文件?

讀取操作# 一次性讀取整個文件內容

with open('致橡樹.txt', 'r', encoding='utf-8') as f:

print(f.read())

# 通過for-in循環逐行讀取

with open('致橡樹.txt', mode='r') as f:

for line in f:

print(line, end='')

time.sleep(0.5)

print()

# 讀取文件按行讀取到列表中

with open('致橡樹.txt') as f:

lines = f.readlines()

print(lines)

寫入操作import csv

class Teacher(object):

def __init__(self, name, age, title):

self.__name = name

self.__age = age

self.__title = title

self.__index = -1

@property

def name(self):

return self.__name

@property

def age(self):

return self.__age

@property

def title(self):

return self.__title

filename = 'teacher.csv'

teachers = [Teacher('駱昊', 38, '叫獸'), Teacher('狄仁杰', 25, '磚家')]

try:

with open(filename, 'w') as f:

writer = csv.writer(f)

for teacher in teachers:

writer.writerow([teacher.name, teacher.age, teacher.title])

except BaseException as e:

print('無法寫入文件:', filename)

else:

print('保存數據完成!')with open('prime.txt', 'w') as f:

for num in range(2, 100):

f.write(str(num) + '\n')

創作挑戰賽新人創作獎勵來咯,堅持創作打卡瓜分現金大獎

總結

以上是生活随笔為你收集整理的python怎么读写_python怎么读写文件的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。