python读写文件并进行异常处理代码演示
python读写文件并进行异常处理代码演示,如果出现IOError则进行相应处理,否则认为是读写正常
""" 皮蛋编程(https://www.pidancode.com) 创建日期:2022/4/24 功能描述:python读写文件并进行异常处理代码演示 """ try: fh = open("testfile", "w") fh.write("This is my test file for exception handling!!") except IOError: print("Error: can\'t find file or read data") else: print("Written content in the file successfully") fh.close()
相关文章