Python for Beginners (Setup Python, Run first program)

Is Python easy to learn for beginners?
Python is an easy-to-learn programming language compared to all other programming languages. Nowadays 3rd standard school classes teach Python to their students. If you want to learn basic Python programming, this tutorial will definitely help you. But mastering Python requires a lot of practice and patience.

python tutorial for beginnersPin

How can I learn Python by myself?

  1. First, install Python software on your computer. And run some basic code.
  2. Code every day. Learn new Small things every day.
  3. Surround yourself with People who are already interested in learning Python.
  4. If you want to build some applications, you need to understand that code is not available on the Internet. You have to combine small pieces of code and you have to create your own application.

How to install Python on Windows

Go to Python's official website and download the latest version of Python installer.

Install the Python software on your Windows computer.

Also, download and install Visual Studio Code for a code editor.

In VS code editor install the Python extension.

How do you write Hello World in Python?

First, create a folder for your Python programs on your computer. The example folder name is “Python”.

Then add this folder In visual studio code (Just drag and drop this folder).

Create a main.py file and add the following code.

print("Hello World")

Run the program and check the output.

Output

Hello world

Python single/multi-line comment

#single line comment

‘’’

This is a multiline comment.

‘’’

To find Python installed location on Windows, run the following command in the Command prompt

where python

Do you need free Python PDF books?

Python Notes for Professionals book

That's all.

About The Author

Scroll to Top
Share to...