摘要:
读取文件内容,read() with open('D:\python3.10\pi_digits.txt','r') as f: print(f.read()) 结果 I love python I love linxux 写入空文件,如果文件存在,使用w会将文件内容情况或截取文件内容,这一点很危险 阅读全文
摘要:
示例: class Restaurant: def __init__(self,restaurant_name,cuisine_type): self.restaurant_name = restaurant_name self.cuisine_type = cuisine_type self.nu 阅读全文