This repository contains my solutions for the exercises from World 1 of the Python course provided by Curso em Vídeo, taught by Professor Gustavo Guanabara.
World 1 introduces the fundamentals of the Python language. The main goal is to develop algorithmic thinking and understand the basic syntax.
- Handling Data: Primitive types (
int,float,bool,str) and output (print,input). - Arithmetic Operators: Calculations, precedence order, and math operations.
- Using Modules: Importing libraries like
math,random, andtime. - Text Manipulation: Analyzing, slicing, and transforming strings.
- Conditional Structures (Part 1): Simple and compound conditions (
if,else).
| ID | Description | Status |
|---|---|---|
| 001-002 | Initial steps and primitives | ✅ Completed |
| 003-015 | Arithmetic operators & Input | ✅ Completed |
| 016-021 | Utilizing Modules (Math/Random) | ✅ Completed |
| 022-027 | Text Manipulation | ✅ Completed |
| 028-034 | Conditions (If/Else) | ✅ Completed |