0% found this document useful (0 votes)
32 views

Basic Concepts Python

Python is a popular, high-level programming language used by many large organizations. It can be used for web programming, scientific computing, and artificial intelligence. Python code is interpreted at runtime without needing to be compiled first. The major versions are 1.x, 2.x, and 3.x, with 3.x code guaranteed to work in future versions. This course covers Python 3.x but transitioning between versions is not difficult.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
32 views

Basic Concepts Python

Python is a popular, high-level programming language used by many large organizations. It can be used for web programming, scientific computing, and artificial intelligence. Python code is interpreted at runtime without needing to be compiled first. The major versions are 1.x, 2.x, and 3.x, with 3.x code guaranteed to work in future versions. This course covers Python 3.x but transitioning between versions is not difficult.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Welcome to Python!

Python is a high-level programming language, with applications in numerous areas,


including web programming, scripting, scientific computing, and artificial intelligence.

It is very popular and used by organizations such as Google, NASA, the CIA, and Disney.
Python is processed at runtime by the interpreter. There is no need to compile your program before
executing it.

The three major versions of Python are 1.x, 2.x and 3.x. These are subdivided into minor
versions, such as 2.7 and 3.3.
Code written for Python 3.x is guaranteed to work in all future versions.
Both Python Version 2.x and 3.x are used currently.
This course covers Python 3.x, but it isn't hard to change from one version to another.

Python has several different implementations, written in various languages.


The version used in this course, CPython, is the most popular by far.
An interpreter is a program that runs scripts written in an interpreted language such as Python.

You might also like