python write without newline 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 not jump next line
print('.', end='')
Example 3: python print without new lines
print('Foo', end='')