Introduction to Python
Introduction to
Python
Summary Notes
2
Contents
3 Lesson objectives
3 What is Python?
3 Characteristics of Python
3 Applications and usage
3 Why learn Python?
3 Example of Python code
4 Download resources
INTRODUCTION TO PYTHON
3
Lesson objectives
By the end of this lesson, you should be able to:
• Explore the Python programming language
• Install Python and the IDE
• Create your first Python script
What is Python?
Python was first developed by Guido van Rossum, a Dutch programmer, and was first released in 1991. It is now
maintained and developed by the Python Software Foundation. Python I considered to be a high-level programming
language.
Characteristics of Python
• Human readable – Based on its syntax, Python resembles the English language quite closely.
• Object-orientated programming – Also called OOP for short, Python is based on the concept of objects
which can store data and code.
• Strong and dynamic – In Python, all variables have types which are crucial, although the language is
dynamic enough to alter the value of variables during runtime.
Applications and usage
• Data science
• Robotics
• Internet of Things (IoT)
• Artificial Intelligence (AI)
• Software development
Why learn Python?
• Very easy language to learn for beginner programmers.
• Widely adopted among software developers.
• Most popular programming language based on the PYPL index.
• Supported by an array of software stacks.
Example of Python code
INTRODUCTION TO PYTHON
4
Download resources
Python programming language
[Link]
PyCharm Community Edition
[Link]
INTRODUCTION TO PYTHON