

Incerto onde
começar?
Track
Certificado
Skilled Python BackEnd Developer
4.7+
★★★★★
★★★★★
261 avaliações
Advanced
This path is designed to empower you to innovate and excel in web development, equipping you with a versatile toolkit for the future.Dive into an exciting Python programming journey, starting with the basics and advancing to complex applications. Mostre mais
python
Flask
Django
Boost your Tech Skills!
with up to 55% off
What you'll get with our subscription:
Access to 85+ top-rated courses
AI-driven Learning
Workspaces for practicing your skills
Personalized study tracks
Certificates of completion
Training 2 or more people?
Get your team access to Codefinity courses anytime, anywhere.
Try Codefinity TeamsWhat you will learn
- Dive deep into functions, both built-in and custom, to enhance code organization, readability, and reusability
- Uncover efficient data handling with Python's diverse data types, empowering skills vital for data analysis.
- Acquire in-demand skills that are highly sought after in industries such as data science, software engineering and etc.
- Master logical programming in Python, crafting intelligent and responsive applications.
- 170 chapters
- 20 hours
- 111 tasks
Trusted by employees of leading companies
Learning track content
Module 1 / Introdução ao Python
Nesta seção, você mergulhará nos fundamentos do Python, se familiarizará com seu ambiente de trabalho, lidará com operações matemáticas simples e exibirá seus resultados.
Aqui, você aprenderá como armazenar itens como números e texto na memória do computador, recuperando-os pelo nome. Você também terá uma noção de manipulação de texto em Python.
- Como Armazenar Números em PythonPreview
- Regras de Nomenclatura do Python para VariáveisPreview
- Como Trabalhar com Variáveis em PythonPreview
- Tipos de Dados em PythonPreview
- Desafio: Convertendo Quilômetros em MilhasPreview
- Armazenar Texto com Strings em PythonPreview
- Indexação de Strings em PythonPreview
- Fatiamento de Strings em PythonPreview
- Desafio: Recuperando Letras da StringPreview
- Concatenação de Strings em PythonPreview
Aqui, você se aprofundará no tipo de dados booleano e descobrirá sua função na criação de programas que respondem a condições específicas.
- Tipo de Dado Booleano em PythonPreview
- Desafio: Trabalhando com Operadores de ComparaçãoPreview
- Como Combinar Condições em PythonPreview
- Desafio: Trabalhando com Operadores LógicosPreview
- Operadores de Associação e Comparações de Tipo em PythonPreview
- Como Usar Expressões if/else em PythonPreview
- Desafio: Administrando uma MerceariaPreview
- Desafio: Criando Lógica de Ímpares e ParesPreview
- Expressões if/elif/elsePreview
- Desafio: Administrando uma Mercearia EstendidaPreview
- Desafio: Conselheiro do TempoPreview
Continuando com os tipos de dados, esta seção ensinará como agrupar atributos variados dentro de uma única variável usando listas, tuplas e dicionários.
- Listas em PythonPreview
- Métodos Comuns de Lista em PythonPreview
- Desafio: Atualizando ListaPreview
- Listas Aninhadas em PythonPreview
- Desafio: Recuperando Informações de Lista AninhadaPreview
- Tuplas em PythonPreview
- Métodos Comuns de Tuplas em PythonPreview
- Desafio: Atualizando TuplaPreview
- Tuplas Aninhadas em PythonPreview
- Desafio: Recuperando Informações de Tupla AninhadaPreview
- Dicionários em PythonPreview
- Desafio: Criando DicionárioPreview
- Métodos Comuns de Dicionário em PythonPreview
- Desafio: Atualizando DicionárioPreview
Nesta parte, você vai dominar a arte de escrever loops em Python - construções essenciais para iterar sobre listas, tuplas, dicionários e até mesmo dataframes futuros.
- Explorar o Loop While em PythonPreview
- Desafio: Trabalhando com o Loop WhilePreview
- Explorar o Loop For em PythonPreview
- Desafio: Trabalhando com o Loop ForPreview
- Função Range em PythonPreview
- Desafio: Usando a Função RangePreview
- Como Iterar Sobre Índices em PythonPreview
- Explorar Loops Aninhados em PythonPreview
Para terminar o nosso curso introdutório, vamos explorar algumas funções incorporadas e, em seguida, começar a criar as suas próprias funções!
- Funções Embutidas no PythonPreview
- Desafio: Convertendo AlturasPreview
- Como Criar Funções em PythonPreview
- Desafio: Escrevendo a Primeira FunçãoPreview
- Uso de Declarações if/else em Funções PythonPreview
- Desafio: Identificando Valores PositivosPreview
- Funções sem Retorno em PythonPreview
- Desafio: Criando Função de LoggingPreview
- Modificando Funções em PythonPreview
- Desafio: Atualizando a Lógica da FunçãoPreview
- Funções Lambda em PythonPreview
- Desafio: Criando Função LambdaPreview
Module 2 / Intermediate Python Techniques
You'll find this topic enjoyable, and you'll learn how to pack and unpack values in a single assignment.
Explore the power of Python's function arguments, *args, **kwargs, and learn how to effectively use functions as arguments.
- Python Function Arguments: Overview of Parameters and ArgumentsPreview
- Using *args in Python: Handling Variable-Length Positional ArgumentsPreview
- Challenge: Calculating the Average Mark with *argsPreview
- Using **kwargs in Python: Flexible Keyword Arguments for Dynamic FunctionsPreview
- Challenge: Mastering **kwargs in Python FunctionsPreview
Discover the higher-order functions and how functions can be passed as arguments to other functions in programming.
What is variable scope, and how did we manage without it before? This topic is essential for understanding the following subjects: Closures and Decorators. I assure you that this topic will be both enjoyable and practical. You will gain knowledge about local, nonlocal, and global variables.
- Global Variables in Python: Accessing and Modifying Global DataPreview
- Local Variables in Python: Understanding Function-Level ScopePreview
- Challenge: Modifying a Global Variable in PythonPreview
- Nested Functions in Python: Scope and AccessibilityPreview
- Nonlocal Variables in Python: Working with Enclosed ScopesPreview
- Python Closures: Retaining State in Nested FunctionsPreview
- Challenge: Implementing a Threshold Checker with ClosuresPreview
This section provides an in-depth exploration of Python decorators, a powerful feature that allows for the modification and enhancement of function behavior. Participants will learn how to write their own decorators, understand built-in decorators, and apply decorators in practical scenarios.
- Introduction to Python DecoratorsPreview
- Python Decorator Syntax: Writing and Applying DecoratorsPreview
- Challenge: Create Your First Python DecoratorPreview
- Using Decorators with Parameters in PythonPreview
- Chaining Multiple Decorators: Advanced Function ModificationsPreview
- Challenge: Basic Smores RecipePreview
- Practical Examples of Python Decorator Usage in Real ApplicationsPreview
Module 3 / Python Advanced Concepts
If you find yourself frustrated with import statements, the difference between modules and libraries, or managing your Python project structure, this section is your key to clarity.
- Python Project Structure: Organizing Code for ScalabilityPreview
- Understanding Python ModulesPreview
- Importing Modules in Python: Best Practices for Code ReusabilityPreview
- Exploring Python Libraries: Built-in and Third-Party SolutionsPreview
- Python Standard Library: Essential Modules for Everyday TasksPreview
- Managing Python PackagesPreview
Want to debug your code effectively and understand the power of leveraging various errors? This section demystifies error handling in Python, showcasing why it’s crucial for developers to master these skills for robust applications.
- Fundamentals of Error Handling in Python: Preventing Code CrashesPreview
- Raising Exceptions in Python: Triggering and Managing ErrorsPreview
- Executing Code After Exceptions: Handling Cleanup OperationsPreview
- Using Assertions in Python: Debugging and Ensuring Code IntegrityPreview
- Best Practices for Exception HandlingPreview
Eager to automate file operations in your projects? This section delves into the essentials of file handling in Python, equipping you with the tools to read, write, and manage files efficiently for smoother, more powerful applications.
- Introduction to File Handling in PythonPreview
- Reading and Writing Files: Handling Text and Data EfficientlyPreview
- Advanced File Operations: Modifying and Managing File ContentPreview
- Working with File Paths in PythonPreview
- Using Context Managers for File Handling in PythonPreview
- Creating Custom Context ManagersPreview
- Handling Binary Files in PythonPreview
You will learn the ins and outs of testing with Pytest and the fundamentals of Test-Driven Development (TDD). This section guides you through creating robust tests that enhance your code's reliability and streamline your development process.
Master automation testing with Unittest. Learn how to cover various test cases effectively using setup, teardown, and mocking.
In Python, iterators and generators are key concepts that enable efficient and memory-friendly data processing. While iterators follow a specific protocol for accessing data sequentially, generators simplify iteration by producing values on demand with the yield keyword. This section explores these concepts and their practical applications, helping you master memory-efficient programming.
- Python Iterables: Understanding Sequences and Data StructuresPreview
- Understanding Iterators in PythonPreview
- Lazy Evaluation in Python: Optimizing Memory and PerformancePreview
- Introduction to Generators: Yielding Values for Efficient IterationPreview
- Practical Applications of Generators: Real-World Use CasesPreview
Module 4 / Flask Intensive Course: Web Development with Python
Get ready to launch our very first project! We're diving into the exciting world of important project concepts and components. Here, we'll make the magic happen by connecting with Flask, crafting our initial functional endpoints, and bringing our project to life with captivating templates and eye-catching static files.
Here, you can enhance your application by adding a database. You'll get hands-on experience working with SQLAlchemy as you create an SQLite database tailored for development mode.
Get ready to dive into the world of ORM queries for databases and discover how to seamlessly integrate them into your project, allowing you to perform the full range of CRUD operations.
Welcome to the world of web design! In this journey, you'll learn how to integrate Bootstrap styles into your project, instantly transforming it into an eye-catching masterpiece. Think of it as playing with digital Legos for programmers.
Module 5 / Django: Build Your First Website
This section serves as your entry point into the world of Django, providing a comprehensive introduction to the framework and the initial steps to kickstart your development journey.
In this section, we'll create a simple program that sends text from the server to the user's page.
In this section, we will explore models, migrations, and other useful things needed when working with databases.
Participants will have the opportunity to delve deeply into working with databases, utilizing Django ORM (Object-Relational Mapping), to ensure efficient data storage and processing.
In this course section, we will extensively explore the principles of working with templates in Django, a crucial component for developing effective and visually appealing web applications.
In this section of the course, we will delve into the essential aspects of implementing site functionality in Django. Participants will gain a comprehensive understanding of building dynamic and interactive features for their web applications.
Requirements
- A computer with a browser - all browsers are supported.
- Your enthusiasm to enhance your tech skills.
- Everything else needed to start learning and practicing is already included in this course.
Over 200,000 5-star ratings and counting
Ruslan Kravchuk
O principal é aprender e não desistir
O material é bom, há muito a aprender, tudo para se tornar melhor e o principal é aprender o que você quer....
Matteo Comune
Graças a eles, estou aprendendo muito…
Graças a eles, estou aprendendo muito mais rápido porque eles ajudam você a entender tudo desde o início. É o melhor site que ajuda pessoas sem conhecimento em TI...
Yuliana Cadavid
óptimo curso para iniciantes
ótimo curso para iniciantes, eles testam o seu conhecimento em cada lição...
Elpunzon
Estou a gostar da minha experiência com a Codefinity…
Estou a gostar da minha experiência de aprendizagem do Python com a Codefinity. A forma de aprendizagem ao meu ritmo é óptima porque posso ajustá-la ao meu horário...
Alexandru Alexandru
É bom aprender com o Codefinity
É bom aprender com o Codefinity. É fácil e tem bons exemplos do que aprendi aqui...
jacob Templet
Easy to follow along with and provides…
É fácil seguir e proporciona desafios no meu dia-a-dia. O desafio mantém-me querendo aprender dia após dia...
Elan
A Codefinity é uma ferramenta de aprendizagem abrangente…
A Codefinity é uma ferramenta de aprendizagem abrangente que ajuda a desenvolver as suas habilidades como engenheiro de software ou cientista de dados. Os exercícios são divertidos...
Thibault
Primeira vez aprendendo a programar
Primeira vez a aprender a programar e conseguindo-o com sucesso com a Codefinity - obrigado...
Adrien Morel
Bem desenhado para iniciantes totais
Bem desenhado para iniciantes totais, progresso incremental e faz-me sentir confiante....
_Gracy
é simplesmente muito bem explicado
é simplesmente perfeitamente bem explicado! Até agora, não tive qualquer dificuldade porque tudo é muito bem gerido...
Ruslan Kravchuk
O principal é aprender e não desistir
O material é bom, há muito a aprender, tudo para se tornar melhor e o principal é aprender o que você quer....
Matteo Comune
Graças a eles, estou aprendendo muito…
Graças a eles, estou aprendendo muito mais rápido porque eles ajudam você a entender tudo desde o início. É o melhor site que ajuda pessoas sem conhecimento em TI...
Yuliana Cadavid
óptimo curso para iniciantes
ótimo curso para iniciantes, eles testam o seu conhecimento em cada lição...
Elpunzon
Estou a gostar da minha experiência com a Codefinity…
Estou a gostar da minha experiência de aprendizagem do Python com a Codefinity. A forma de aprendizagem ao meu ritmo é óptima porque posso ajustá-la ao meu horário...
Alexandru Alexandru
É bom aprender com o Codefinity
É bom aprender com o Codefinity. É fácil e tem bons exemplos do que aprendi aqui...
jacob Templet
Easy to follow along with and provides…
É fácil seguir e proporciona desafios no meu dia-a-dia. O desafio mantém-me querendo aprender dia após dia...
Elan
A Codefinity é uma ferramenta de aprendizagem abrangente…
A Codefinity é uma ferramenta de aprendizagem abrangente que ajuda a desenvolver as suas habilidades como engenheiro de software ou cientista de dados. Os exercícios são divertidos...
Thibault
Primeira vez aprendendo a programar
Primeira vez a aprender a programar e conseguindo-o com sucesso com a Codefinity - obrigado...
Adrien Morel
Bem desenhado para iniciantes totais
Bem desenhado para iniciantes totais, progresso incremental e faz-me sentir confiante....
_Gracy
é simplesmente muito bem explicado
é simplesmente perfeitamente bem explicado! Até agora, não tive qualquer dificuldade porque tudo é muito bem gerido...
Data Engineer
Certificado de Conclusão
Mostre suas habilidades recém-adquiridas. Você merece
Discover more
Learning tracks
Somente para Ultimate
1 Curso
1 Projeto
0 Task
Somente para Ultimate
7 Cursos
345 Tarefas
Somente para Ultimate
5 Cursos
119 Tarefas
Somente para Ultimate
5 Cursos
146 Tarefas
Somente para Ultimate
4 Cursos
115 Tarefas
Somente para Ultimate
6 Cursos
101 Tarefas
Somente para Ultimate
6 Cursos
168 Tarefas
Somente para Ultimate
5 Cursos
135 Tarefas
Somente para Ultimate
2 Cursos
1 Projeto
57 Tarefas
Somente para Ultimate
7 Cursos
376 Tarefas
Somente para Ultimate
4 Cursos
143 Tarefas
Somente para Ultimate
5 Cursos
180 Tarefas
Somente para Ultimate
5 Cursos
165 Tarefas
Somente para Ultimate
6 Cursos
308 Tarefas
Somente para Ultimate
6 Cursos
252 Tarefas
Somente para Ultimate
8 Cursos
2 Projetos
176 Tarefas
Somente para Ultimate
2 Cursos
80 Tarefas
Somente para Ultimate
7 Cursos
293 Tarefas
Somente para Ultimate
1 Projeto
0 Task
Somente para Ultimate
2 Cursos
21 Tarefas
Somente para Ultimate
2 Cursos
0 Task
Somente para Ultimate
3 Cursos
39 Tarefas
Somente para Ultimate
13 Cursos
555 Tarefas
Somente para Ultimate
13 Cursos
555 Tarefas
Somente para Ultimate
1 Curso
0 Task
Somente para Ultimate
0 Task
Somente para Ultimate
5 Cursos
139 Tarefas
Somente para Ultimate
3 Cursos
71 Tarefas
Somente para Ultimate
7 Cursos
282 Tarefas
Somente para Ultimate
5 Cursos
239 Tarefas
Somente para Ultimate
4 Cursos
125 Tarefas
Somente para Ultimate
2 Cursos
33 Tarefas
Somente para Ultimate
3 Cursos
119 Tarefas
Somente para Ultimate
1 Curso
15 Tarefas
Somente para Ultimate
3 Cursos
75 Tarefas
Somente para Ultimate
3 Cursos
31 Tarefas
Somente para Ultimate
2 Cursos
151 Tarefas
Somente para Ultimate
3 Cursos
54 Tarefas
Somente para Ultimate
2 Cursos
1 Projeto
38 Tarefas
Somente para Ultimate
3 Cursos
36 Tarefas
Somente para Ultimate
2 Cursos
1 Projeto
38 Tarefas
Somente para Ultimate
5 Cursos
134 Tarefas
Learning tracks
trilha
TEST TRACK 12
Iniciante
4.0
(6998)
trilha
Desenvolvimento Web Full Stack
Iniciante
4.5
(58)
trilha
Torne-se um Desenvolvedor React
Intermediário
4.9
(7)
trilha
Análise e Visualização de Dados em Python
Intermediário
4.6
(7)
trilha
SQL do Zero ao Herói
Iniciante
4.7
(93)
trilha
C++ para Iniciantes
Iniciante
4.4
(17)
trilha
Python de Zero a Herói
Iniciante
4.7
(284)
trilha
Fundamentos de Aprendizado de Máquina
Intermediário
4.9
(7)
trilha
Python: Além do Intermediário
Iniciante
5.0
(1)
trilha
Essenciais de Java
Iniciante
4.3
(9)
trilha
Game Development with Unity
Iniciante
4.6
(7)
trilha
Torne-se um Desenvolvedor Django
Avançado
4.4
(27)
trilha
Flask para Leigos
Intermediário
4.5
(31)
trilha
Fundação de Desenvolvimento Frontend
Iniciante
4.6
(52)
trilha
Web Developer from Zero to Hero
Iniciante
4.6
(56)
trilha
Preparation for Data Science
Intermediário
4.5
(11)
trilha
Deep Learning Odyssey
Avançado
5.0
(3)
trilha
Web Development with C#
Iniciante
4.8
(98)
trilha
TEST E2E TRACK BEGINNER
Iniciante
trilha
PT Track
Begginer
4.7
(3)
trilha
Test Recalculate
Iniciante
trilha
Excel Essentials
Iniciante
4.5
(33)
trilha
Full-Stack .NET Developer Journey
Intermediário
4.8
(129)
trilha
Full-Stack .NET Developer Journey
Intermediário
4.8
(129)
trilha
Test track with rating
Avançado
4.0
(4)
trilha
TEST TEST TRACK
Iniciante
trilha
Data Analyst Foundation
Iniciante
4.7
(111)
trilha
C++ Mastery
Avançado
trilha
Java Web
Avançado
4.5
(30)
trilha
Become a QA Engineer
Iniciante
4.5
(43)
trilha
Video Production with Adobe
Iniciante
trilha
Digital Marketing Essentials
Iniciante
trilha
UI/UX Design Tools
Iniciante
trilha
Test image upload track
Iniciante
trilha
Essential Office Skills
Iniciante
4.6
(24)
trilha
GitHub from Zero to Hero
Iniciante
trilha
No-Code Website Development
Iniciante
trilha
C Programming & Low-Level Development
Iniciante
trilha
testes
Iniciante
4.7
(3)
trilha
Test translation track
Intermediário
trilha
Test CMS Track
Iniciante
4.7
(3)
trilha
Python for Data Analysis
Intermediário
4.6
(9)
Become a Development expert
Interactive exercises
Learning videos
AI-assistant on all courses
Workspaces for designing your own projects
Ready to get started?
ProBest intro offer | UltimateA complete experience to kickstart your career | |
---|---|---|
85+ Top-Rated courses | ||
Completion certificates | ||
AI-Assistant in all courses | ||
20+ hands-on Real-world projects | ||
Personalized study tracks | ||
Unlimited workspaces | ||
Boost your Tech Skills!
with up to 55% off
What you'll get with our subscription:
Access to 85+ top-rated courses
AI-driven Learning
Workspaces for practicing your skills
Personalized study tracks
Certificates of completion
Training 2 or more people?
Get your team access to Codefinity courses anytime, anywhere.
Try Codefinity Teams