closing text files in python
file = open("file_name","ab+")
file.close()
closing text files in python
file = open("file_name","ab+")
file.close()
close a file python
# read, write, close a file
# catch error if raise
try:
file = open("tryCatchFile.txt","w")
file.write("Hello World")
file = open("tryCatchFile.txt", "r")
print(file.read())
except Exception as e:
print(e)
finally:
file.close()
python close gile
with open(filename) as f:
#use file
#close file
f.close()
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us