0
What is \n. Is used for plz help me
4 Answers
+ 2
in python \n stands for creating a new line in our code.
e.g
x=('hello\nworld')
print(x)
#output=
hello
world
where the interpret find the \n in our code then it will automatically add new line in the place of \n in code.
+ 1
It means New line in C# if you have some output it will put whatever after the \n on a new line. \t means tab.
0
any answers plz
- 1
It adds a line break I guess.