python

Introduction to Python | Mobile-Friendly

BEGINNER

#python

Author: Oleksandr Lomako

Course description

Python is an interpreted high-level, general-purpose programming language, which means it can be used in different spheres of human activity (unlike HTML, CSS, and JavaScript, which are mainly used in web development). Python can be used in software developing, data science, back-end development, etc. In this mobile-friendly version of the course, you will meet with the main aspects of Python.

info

Complete all chapters to get certificate

0%

Python Basics

chevron

In the first section, you will be introduced to the very basics of Python - how to interact with Python, perform simple operations, and output results.

Hello, Python!

Comments

Challenge

Arithmetic Operations

Exponentiation

Challenge

Integer Division and Modulus

Challenge

Variables

chevron

In the past section, you performed different operations with numbers. In this section, you will learn how to save values in computer memory and be able to use them in the future for any purpose.

What Is a Variable?

Naming Rules

Naming Conventions

Challenge

Operating With Variables

Challenge

Numbers

Converting

Challenge

Strings

chevron

During the last two sections, you mostly worked with numerical data. In the third section, you will learn how to work with textual data in Python (strings), how to manipulate such data, what methods can be applied to them, and so on.

What Is a String?

Concatenation

Converting

Newline

Challenge

f-Strings

Indexing

Slicing