Skip to content

Latest commit

 

History

History
134 lines (105 loc) · 7.96 KB

README.md

File metadata and controls

134 lines (105 loc) · 7.96 KB

A Fast Python3 Tutorial For Beginners.

Python is a very popular programming language which is very useful, powerful, interesting and easy to learn.

Introduction.

This is a basic tutorial of python3 for beginners. From Basic Datatypes to Object Oriented Programming(OOP).
It is mainly based on Liao Xuefeng's Python3 Tutorial and book Begining Python from Novice to Professional 3rd Edition. It also includes some other useful points about python3.  

Installation

Go python official website: https://www.python.org/ to download and install.(If you are using Linux(ubuntu/redhat...) or Mac, there is no need to do so, because python is a build-in software on these platforms.)
Installation of third-party modules:

  • pip(pip3) install 'package name' (pip3 for python3)
  • conda install 'package ame' (if you have installed Anaconda)

Python IDE Recommend

  • PyCharm is highly recommended. It is free(the community version), cross-platform(PC, Mac, Linux), concise and efficient, which is suited to large project development.
  • Jupyter Notebook is also highly recommended. It is fast, flexible, lightweight, interactive and efficient, which is suited to small script coding and testing. You will fall in love with it immediately. How to setup jupyter notebook.

Useful Websites

Tutorial Catalogue

Online versions are available, just click the [Online] link to run the demo.

Flag Counter