When I write print("Hello", "world")
the output should be Hello world
, however what I am getting is ('Hello', 'world')
I understand that this has something to do with the Python version, where in python 2 the print function did not require parentheses.
I have tried changing the python version and it is displayed as python 3.10.0, I have tried using a custom path as well as looking in other forums but can't seem to find a solution.