Discuss / Python / demo

Tonight_dou

#1 Created at ... [Delete] [Delete and Lock User]
#!/usr/bin/env python3
# -*- coding:utf-8 -*-

'文件读取测试'

__author__ = 'mm'
try:
    f = open('/Users/jianma/Desktop/Python/0405/0405.py', 'r')
except FileNotFoundException as e:
    print(e)
else:
    print(f.read())
finally:
    f.close()
    print('close...')


with open('/Users/jianma/Desktop/Python/0405/writedemo.txt', 'w') as f:
    f.write('Hello, World')

  • 1

Reply