+ 2
what does"n/"mean
6 Answers
+ 2
CORRECTION!!!
Escape characters are introduced with backslash: \
not slash /
so n/ mean n divided by (if you assigned a value to n). And you still need to write something after n e.g.:
>>>n=3.0
>>>n/2.0
1.5
Now with escape character you toe or as so: \n
e.g.:
>>> print ("Hello\nworld!")
Hello
world
I use python 2.7.5 on my phone but I'm pretty sure it won't change any time soon.
For more on those backslashes look up Google for regular expressions (or regex).
+ 5
"/n" Backslash is an escape sequence. n stands for new line. This means insert a new line in the text at this point.
+ 2
Thank you for the correction.
+ 1
kk thnks
+ 1
new line of text
+ 1
it means a new line