I'm new to Python and Jupyter-lab. In Jupyter-lab, when I try to run expression:
5--4
It gives output as 9. Could you explain why?
Python parses the expression as (5)-(-4) and hence a 9 is returned.
1.4m articles
1.4m replys
5 comments
57.0k users