Simple question.
I have a file called printtest.py in Pythong 3.7.3 that contains one line of code:
print("Test", 1)
The result of importing it is:
Test 1
I then change the file to be printtest.pyx and change nothing else. I compile using Cython 0.29.12. Same single line of code. Now on importing I get:
('Test', 1)
Any time I use the print statement I get the extra parentheses and comma that I don't want. Why does it behave differently?