write without newline python code example
Example 1: python writelines newline
lines = ['line1', 'line2']
with open('filename.txt', 'w') as f:
f.writelines("%s\n" % l for l in lines)
Example 2: python read file without newline
# converts read file into a list without newlines
temp = file.read().splitlines()