Answers for "how to write new line python"

3

python writelines newline

lines = ['line1', 'line2']
with open('filename.txt', 'w') as f:
    f.writelines("%sn" % l for l in lines)
Posted by: Guest on October-19-2020
1

new line print python

print("Hello Worldn" "This is the second line")
Posted by: Guest on October-09-2020

Code answers related to "how to write new line python"

Python Answers by Framework

Browse Popular Code Answers by Language