Wednesday, June 24, 2020

Learn Python 2020

Learn Python 2020




If you don't know which programming language to learn, Python will be a good choice to start. Python is one of the top 3 programming languages these few years.

Check this video Most Popular Programming Languages 1965 - 2019.

Python can last for another few more years, so is a good investment to learn Python.

Python is easy to learn, even for beginners.

For examples: Hello world

> print('Hello, world.')
⇒ Hello, world.

It has an interactive environment, users can observed the results immediately. No need to compile, no need to go through the complicated process to output the result. This is important for many beginners.

Python is dynamic data type:

> a= 'Hello, world.'
⇒ Hello, world.

> a= 200+300
⇒ 500

The variable 'a' can be a string or a number, easy and flexible.

This is just a preview. You should look for a proper tutorial to learn Python. Trust me, is not that difficult for beginners.

No comments: