I am a beginner and I want to make a simple program that would take an input and print it back in new line. This is how my code looks.
a=input("enter: ")
print(a)
output what i get:
enter: python\ncode
python\ncode
expected output:
enter: python\ncode
python
code