Answers for "how to replace \n on string python 3"

1

python replace newline

without_line_breaks = a_string.replace("n", " ")
Posted by: Guest on November-11-2020
1

python replace n with actual new line

#Just print the text and copy from console
print(f"A n B n C")
#output:
# A
# B
# C
Posted by: Guest on March-05-2021

Python Answers by Framework

Browse Popular Code Answers by Language