+ 1
2+2 or any other math problem works in Python's IDE for me but not in VS 2019. Why?
I can do the print("Hello World!") in Visual Studio 2019 just fine but when I do a simple 2+2 or 10-2 in it no errors are shown but the command line ignores them and is only the "Press any button to continue". Thanks
3 Answers
+ 3
Maybe you forgot to print result?
print(2+2)
+ 1
Damon, not at all :)
0
Thank you Asman. That worked. I was following the solo learn code example and it didn't say to do that. There basing it off the Python IDE which handles it diffrent I suppose. Thank you again :-)