dycat / python101

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Python 101

In this turtural, we introduce the usage of Python.

The definetive guide of Python shall be the Python Official Website. You could always find the detailed information in from its documentation section.

When I write this, the latest Python version is 3.11. Historically, Python have two major versions: Python 2 and Python 3.

Installation

Try Python in browser

There are multiple online dev environment you can use to get start, like replit, pythonAnyWhere.

Install Python in your computer

Install Python

Install Code editor

Quick glance

<iframe src="https://replit.com/@ianyo/Python101#HelloWorld.py?embed=true" width="600" height="400" />

Basics

Expressions

IF

For-loop

While

Create a python projects

Functions

About