Skip to content

Latest commit

 

History

History
95 lines (71 loc) · 3.02 KB

File metadata and controls

95 lines (71 loc) · 3.02 KB

From Zero to Python

Project link

Github link Website link

https://img.shields.io/badge/-Work%20In%20Progress-yellow


Available in English | 简体中文


A python tutorial for beginners.

This tutorial is designed by Python 3.x (Python 2 have reached the end of life, "EOL", on 1 Jan 2020).


Python

Python

Python is an interpreted, high-level, general-purpose, object-oriented programming language.

Learn more


The Zen of Python

The Zen of Python, by Tim Peters

Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren't special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.
Although that way may not be obvious at first unless you're Dutch.
Now is better than never.
Although never is often better than *right* now.
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let's do more of those!

You can see this Easter Egg by

$ python
>>> import this

Tutorials

Fundamental

Title Finished Date
Installation & Setup 13 Jul 2020
Syntax 14 Jul 2020
Variables & Data Types 16 Jul 2020
Operators 16 Jul 2020
Conditions & Loops 17 Jul 2020
Functions & Lambda 18 Jul 2020
Classes & Objects 19 Jul 2020
Input & Output 20 Jul 2020
Exceptions 21 Jul 2020

Advanced

Title Finished Date
Function print() -

Usages

Title Description Finished Date
[WordRepetitionCount] To count word repetition in a file -
[FromPythonToSnake] Make and play Snake game with Python -