Skip to content

Tutorial 1

zwj2 edited this page Nov 14, 2022 · 11 revisions

Welcome to the python_tutorial wiki!

Installing Python

Introduction

Python is an object-oriented, interpreted scripting language that translates written programs directly into machine language at runtime. This is different from C, which has a compilation process.

Over the years, the python language has become increasingly popular for a number of reasons.

  • Simplicity of language, easy to get started.

    The founders of python positioned python to be elegant, clear and simple, avoiding cumbersome syntactic structures. Making it more focused on problem solving, so it is very friendly to beginners.

  • Abundant library.

    Python has a very rich and powerful library for users to call upon. This is excellent news for users, because once you are familiar with how to use a particular package, it is easy to reach your goals combine with the package's relevant functionality.

  • Open source.

    Python is a free, open source software that allows users to download packages developed by others for free and to change the source code to make it more and more perfect.

  • Stable portability.

    A piece of code that runs successfully can be run on different platforms such as windows, liunx.

Installation

You can go to the official website to download python's installation package and you need to add python to your PATH in your process of installation.

Congratulations, you have learn some basic knowledge about python! Now you can move on to Tutorial 2

Clone this wiki locally