Now that you can develop Python in Visual Studio 2017, that's the procedure.
Windows 7 Professional SP1 64bit Visual Studio 2017 Community 15.2 (26430.6) Python 3.6.0
Install Python Development from the Visual Studio 2017 installer.
Create a new Python project from Visual Studio. This time it will be a console application.
Now that the project is created, create a program that displays "Hello World".
PythonSample.py
print("Hello World")
After creating the program, execute it. "Hello World" is displayed.
This completes the project creation.
Recommended Posts