Lesson 3: Variables and creating your first video
In Python, basic variables are used to store data values. The common types of variables include:
Integer (int): Represents whole numbers, e.g., 5, 100, -3.
Float (float): Represents real numbers with a decimal point, e.g., 3.14,...
Lesson 1: Introduction to Python
What is Python?
Python is a high-level, interpreted programming language known for its readability and versatility. Created by Guido van Rossum and first released in 1991, Python's design philosophy emphasizes code readability with its notable...
Lesson 4: Loops
Loops in Python are a fundamental concept used to execute a block of code repeatedly under certain conditions. There are two main types of loops in Python: for loops and while loops.
For Loops:
A for...
Lesson 5: functions
In Python, functions are a fundamental building block of the language. They are used to encapsulate a set of instructions that can be used repeatedly in a program. Here are some key points about...
Lesson 6: Creating Lines
Creating lines in Manim, a mathematical animation library, is a straightforward process. To create a line, you typically use the Line class, specifying the start and end points of the line. Here's a basic...