1. 文件打開模式html
2. 文件操做方法python
文件讀寫與字符編碼app
以讀取爲例,這樣一個文件:text.txt, 該文件的字符編碼爲 utf-8ide
總有一天總有一年會發現 有人默默的陪在你的身邊 也許 我不應在你的世界 當你收到情書 也表明我已經走遠
1. 基本實現編碼
f = open('text.txt', 'r', encoding='utf-8') print(f.read()) f.close()
2. 中級實現spa
在基本實現的的基礎上,可能要考慮到一些可能出現的意外因素。由於文件讀寫時都有可能產生IO錯誤(IOError),一旦出錯,後面包括 f.close() 在內的全部代碼都不會執行了,所以咱們要保證文件不管如何都應該關閉。3d
f = '' # 全局要申明下 f 變量,否則 f.close() 會報黃 try: f = open('text.txt', 'r', encoding='utf-8') print(f.read()) finally: if f: f.close()
在上面的代碼中,就是 try 中的代碼出現了報錯,依然會執行 finally 中的代碼,即文件關閉操做被執行。code
3. 最佳實踐htm
爲了不忘記或者爲了不每次都要手動關閉文件,且過多的代碼量,咱們可使用 with 語句,with 語句會在其代碼塊執行完畢以後自動關閉文件。blog
with open('text.txt', 'r', encoding='utf-8') as f: print(f.read()) print(f.closed) # 經過 closed 獲取文件是否關閉,True關閉,False未關閉 # 執行結果: # 總有一天總有一年會發現 # 有人默默的陪在你的身邊 # 也許 我不應在你的世界 # 當你收到情書 # 也表明我已經走遠 # True
要求:
1. 用戶可註冊不一樣的帳戶,並將用戶信息保存到本地文件中;
2. 下次登陸,註冊過的用戶均可實現登陸
代碼:
#!/usr/bin/python3 # -*- coding: utf-8 -*- # Author: hkey import os def file_oper(file, mode, *args): if mode == 'r': list_user = [] with open(file, mode) as f: for line in f: list_user.append(line.strip()) return list_user elif mode == 'a+': data = args[0] with open(file, mode) as f: f.write(data) class User(object): def __init__(self, name, passwd): self.name = name self.passwd = passwd self.file = 'user.db' def regist(self): data = '%s|%s\n' % (self.name, self.passwd) file_oper(self.file, 'a+', data) if os.path.isfile('user.db'): print('\033[32;1m註冊成功.\033[0m') def login(self): list_user = file_oper(self.file, 'r') print('list_user:', list_user) user_info = '%s|%s' % (self.name, self.passwd) if user_info in list_user: print('\033[32;1m登陸成功.\033[0m') else: print('\033[31;1m登陸失敗.\033[0m') def start(): while True: print('1. 註冊\n' '2. 登陸\n' '3. 退出') choice = input('\033[34;1m>>>\033[0m').strip() if choice == '1': username = input('\033[34;1musername:\033[0m').strip() password = input('\033[34;1mpassword:\033[0m').strip() user = User(username, password) user.regist() elif choice == '2': username = input('\033[34;1musername:\033[0m').strip() password = input('\033[34;1mpassword:\033[0m').strip() user = User(username, password) user.login() elif choice == '3': break else: print('\033[31;1m錯誤:輸入序號錯誤。\033[0m') if __name__ == '__main__': start()
更多參考連接:https://www.cnblogs.com/yyds/p/6186621.html