Tutorial Intro
Let's discover Python in less than 5 minutes.
Getting Started
-
Start by installing Python.
-
Go to python.org
-
Click on Downloads
-
Make Sure to Select the Suitable Version and Install It.
Creating a Python File
Get started by creating a new FileName.py
file.
Or Try Python Immediately with Python Compiler.
Write the below code on the Online Compiler or in your Local Machine:
FileName.py
print("Hello, World!")
Running FileName.py
Open cmd in your machine and type:
cmd
python Filename.py
Output
Hello, World!