Python is a high level program language used for multiple purposes like artificial intelligence and web applications. It has lots of similarities with JavaScript but is a lot easier and direct to the point.
This guide will explain the basics about Python presented by Microsoft's amazing playlist called Python for Beginners.
Objective
In this first part, you will learn how to install, configure and program in Python by using Visual Studio Code.
The content displayed here can be found in this GitHub repository: Python HelloWorld.
Instructions
Acess the Python Website and download the latest version.
Follow the instalation process until the end with the default configuration.
Open Visual Studio Code and install the Python extension.
Create a file named "helloworld.py" containing the code:
print('Hello World')
Run the command below in the terminal:
python .\helloworld.py
The message will be printed with success.
Conclusion
It was easy to print a single line in Python. In the next chapters, you will learn about common functions, operations and sintax.
Video References
- Programming with Python | Python for Beginners [1 of 44]
- Programming with Python | Python for Beginners [2 of 44]
- Programming with Python | Python for Beginners [3 of 44]
- Programming with Python | Python for Beginners [4 of 44]
- Programming with Python | Python for Beginners [5 of 44]
- Programming with Python | Python for Beginners [6 of 44]
Top comments (0)