• Post category:StudyBullet-6
  • Reading time:4 mins read


Learn Python Fundamentals

What you will learn

Learn Python Expressions

Learn Python Statements

Learn Python Data Types

Learn Python Data Types Casting

Learn Python List

Learn Python Tuple

Learn Python Operators

Learn Python Loops

Learn Python Functions

Description

Python is an interpreted high-level general-purpose programming language. Its design philosophy emphasizes code readability with its use of significant indentation. Its language constructs as well as its object-oriented approach aim to help programmers write clear, logical code for small and large-scale projects.

What can Python do?

  • Python can be used on a server to create web applications.
  • Python can be used alongside software to create workflows.
  • Python can connect to database systems. It can also read and modify files.
  • Python can be used to handle big data and perform complex mathematics.
  • Python can be used for rapid prototyping, or for production-ready software development.
  • Why Python?
  • Python works on different platforms (Windows, Mac, Linux, Raspberry Pi, etc).
  • Python has a simple syntax similar to the English language.
  • Python has syntax that allows developers to write programs with fewer lines than some other programming languages.
  • Python runs on an interpreter system, meaning that code can be executed as soon as it is written. This means that prototyping can be very quick.
  • Python can be treated in a procedural way, an object-oriented way or a functional way.

Good to know


Get Instant Notification of New Courses on our Telegram channel.


The most recent major version of Python is Python 3, which we shall be using in this tutorial. However, Python 2, although not being updated with anything other than security updates, is still quite popular.

In this tutorial Python will be written in a text editor. It is possible to write Python in an Integrated Development Environment, such as , Pycharm, Netbeans or Eclipse which are particularly useful when managing larger collections of Python files

English
language

Content

Setting Up the Environment

Introduction
What is Python
What is Jupyter Notebook
Installing Jupyter Notebook
Running Jupyter Notebook Server
Creating a new Notebook

Python Fundamentals

Python Expressions
Python Statements
Python Code Comments
Python Data Types
Python Casting Data Types
Python Variables
Python List
Python Tuple
Python Dictionary
Python Operators
Python Conditional Statements
Python Loops
Python Functions