This notebook was prepared by Donne Martin. Source and license info is on GitHub.
In [1]:
old_file_path = 'type_util.py'
with open(old_file_path, 'r') as old_file:
for line in old_file:
print(line.rstrip())
In [2]:
new_file_path = 'hello_world.txt'
with open(new_file_path, 'w') as new_file:
new_file.write('hello world!')
In [3]:
import codecs
with codecs.open("hello_world_new.txt", "a", "utf-8") as new_file:
with codecs.open("hello_world.txt", "r", "utf-8") as old_file:
for line in old_file:
new_file.write(line + '\n')