📄️ Python Basics
Python is a high-level general purpose language. This lesson will cover some of the basic language design philosophies as well as common mistakes.
📄️ Variables and Literals
In programming, we work with data, and two fundamental concepts for handling data are literals and variables.
📄️ Data Types
Every value in Python has a data type. Data types determine what operations can be performed on the data and how the data is stored in memory. Python includes several built-in data types to handle different kinds of information. You can also perform operations on these. A operation is just a manipulation of the data (for example, addition, subtraction, etc.).
📄️ Operators
Operators are special symbols that perform operations on variables and values. Python provides a rich set of operators for performing calculations, comparing values, and building logical expressions.
📄️ Input and Output
By now you have seen the print() function used to output data to the console. Python provides several ways to interact with users through input and output operations. These operations are essential for creating interactive programs that can receive data from users and display information.