Commit 32b743b8 by BellCodeEditor

save project

parent 157035e9
Showing with 10 additions and 0 deletions
filel = open(r'C:\Users\Administrator\Desktop\test.txt','r',encoding='utf-8')
a = filel.read()
print(a)
filel.close()
with open(r'C:\Users\Administrator\Desktop\test.txt','r',encoding='utf-8') as filel:
a = filel.read()
print(a)
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment