Incerto onde
começar?
Track
Certificado
Python de Zero a Herói
4.7+
★★★★★
★★★★★
7701 avaliações
Beginner
Após concluir este curso, você será capaz de escrever códigos básicos em Python, compreender sua sintaxe e configurar um ambiente de desenvolvimento Python. Você terá as habilidades para iniciar sua jornada de programação e construir uma base sólida para continuar aprendendo.
python
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.
- 195 chapters
- 18 hours
- 171 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.
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 Dados BooleanoPreview
- Desafio: Operadores de ComparaçãoPreview
- Combinando CondiçõesPreview
- Desafio: Operadores LógicosPreview
- Operadores de Associação e Comparação de TiposPreview
- Expressões Simples if/elsePreview
- Desafio: SupermercadoPreview
- Desafio: Ímpar e ParPreview
- Expressões if/elif/elsePreview
- Desafio: Mercearia 2Preview
- Desafio: Positivo, Negativo ou ZeroPreview
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.
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.
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!
Module 2 / Tipos de Dados em Python
Os tipos de dados numéricos são cruciais em Python, por isso é importante começar por eles. Aqui você trabalhará com operações matemáticas simples e descobrirá o propósito de aprender diferentes tipos de dados numéricos.
O principal objetivo desta seção é esclarecer os tipos de dados booleanos; é um subtipo de dados numéricos, mas um pouco mais desafiador. Como sempre é bom se destacar nos tópicos mais difíceis, esta seção é uma parte valiosa do seu currículo.
As strings são uma maneira de implementarmos frases em Python, ou seja, de fornecer instruções aos usuários que são o público-alvo do seu programa. De fato, é sempre melhor poder trabalhar com strings, pois elas devem ser utilizadas no seu código. Você entenderá o motivo em breve.
- Imprima sua StringPreview
- AspasPreview
- Familiarizando-se com a IndexaçãoPreview
- Fatie a PalavraPreview
- Indexação NegativaPreview
- Fatie o TermoPreview
- Tarefa de FatiamentoPreview
- Como Encontrar o Comprimento de Uma StringPreview
- Obtendo o Indice de SímbolosPreview
- Encontre o Indice de PalavrasPreview
- Fatiação com Função de ÍndicePreview
- Uma String é Mutável?Preview
- Unindo StringsPreview
Este capítulo consiste em tarefas práticas que combinam todos os tópicos examinados juntamente com um pouco de teoria.
Module 3 / Estruturas de Dados em Python
O que é uma lista? Uma lista é uma coleção ordenada que pode ser modificada. Ela também permite elementos duplicados.
O que é um dicionário? Um dicionário é uma coleção ordenada que pode ser alterada, mas não permite entradas duplicadas. Consiste em pares `chave:valor`, que são usados para otimizar sua estrutura.
- Criando um DicionárioPreview
- Acessando Valores do DicionárioPreview
- Acessando Chaves de DicionárioPreview
- Adicionando ItensPreview
- Desafio: Expanda o DicionárioPreview
- A Palavra-Chave delPreview
- O Método pop()Preview
- O Método popitem()Preview
- O Método clear()Preview
- Compreensões de DicionárioPreview
- Compreensão de Dicionário com CondiçãoPreview
O que é uma tupla? Uma tupla é uma coleção ordenada que não pode ser alterada. Ela pode ter elementos duplicados. Embora seja semelhante a uma lista, os valores em uma tupla podem ser de qualquer tipo e são indexados por inteiros. Embora não seja obrigatório, é comum colocar os valores de uma tupla entre parênteses, tornando-os mais fáceis de entender em Python.
O que é um conjunto? Em Python, um `set` é uma coleção desordenada que é tanto `iterável` quanto `mutável`, sem elementos repetidos. Embora a ordem dos itens em um conjunto não seja fixa, ele pode incluir uma variedade de elementos. Um benefício chave de usar conjuntos em vez de listas é seu método altamente eficiente para determinar se um elemento existe dentro do conjunto.
Module 4 / Estruturas Condicionais no Python
Neste curso envolvente, você irá desvendar os mistérios do versátil operador condicional "if", descobrindo seu poder para moldar resultados. Mergulhe mais fundo no mundo dos operadores lógicos, dominando sua aplicação habilidosa e descobrindo os segredos para priorizar seu uso de forma eficaz.
Nesta seção, somos apresentados a uma forma mais avançada do operador condicional - if-else. Também aprenderemos o que são instruções if-else aninhadas e praticaremos em tarefas.
Aqui, aprenderemos sobre a forma mais avançada do operador condicional if-elif-else, nos familiarizaremos com a sintaxe desta construção e como aplicá-la corretamente.
Maximize a eficiência de decisões em uma linha com o operador ternário! Essa joia da programação, popular no Python, permite que você simplifique suas escolhas em uma única linha, tornando seu código conciso e elegante.
Module 5 / Python Loops Tutorial
We start learning Python loops with the for loop. A for loop is used for iterating over a sequence. Let's go!
With the while loop, we can execute a set of statements as long as a condition is true. We are going to work with this loop and handle different problems!
A nested loop is a loop inside a loop. Sound difficult? Don't worry! We will handle this loop!
Module 6 / Python Functions Tutorial
We will consider what a function in Python and some basic techniques used to create functions is: what are the arguments of the function, what is the return value of the function, what is the body of the function, and how to use the function in the code.
Learn how to define functions in Python using positional and optional arguments. Master the flexibility of creating functions that adapt to different input scenarios.
Learn to work with arbitrary arguments and keyword arguments in Python to handle variable numbers of inputs. Understand how arbitrary arguments manage flexible positional inputs and how keyword arguments organize named arguments into a dictionary for efficient function design.
The return value of a function is the direct result of the execution of the function, which we can use in the program. There are several types of function return values - we will consider the most commonly used.
Explore the power of recursion and lambda functions in Python. Understand how recursion allows a function to call itself for solving complex problems, and how lambda functions provide a concise way to define anonymous functions for simple tasks.
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
The main thing is to learn and not give up
The material is good, there is a lot to learn, all in order to become better and the main thing is to learn what you want....
Matteo Comune
Thanks to them I'm learning a lot…
Thanks to them I'm learning a lot faster because they help you to understand everything from scratch. It's the best website that helps people with no background in IT...
Yuliana Cadavid
great course for beginners
great course for beginners, they test your knowledge in every lesson...
Elpunzon
I am enjoying my Codefinity experience…
I am enjoying my Codefinity experience learning Python. The self-paced way of learning is great because I can fit it into my schedule...
Alexandru Alexandru
Is nice to learn from codefinity
Is nice to learn from codefinity. Its easy and have good examples on what I learned here...
jacob Templet
Easy to follow along with and provides…
Easy to follow along with and provides challenge in my every day life. The challenge keeps me wanting to learn day after day...
Elan
Codefinity is a comprehensive learning…
Codefinity is a comprehensive learning tool to help you develop your skills as a software engineer or data scientist. The exercises are fun and a good way to sharpen your skills...
Thibault
First time learning how to code
First time learning how to code and successfully doing so with codefinity - thank you...
Adrien Morel
Well designed for total beginners
Well designed for total beginners, incremental progress and makes me feel confident....
_Gracy
it's simply perfectly well explained
it's simply perfectly well explained! so far I have not experienced any difficulty because everything is so well managed...
Ruslan Kravchuk
The main thing is to learn and not give up
The material is good, there is a lot to learn, all in order to become better and the main thing is to learn what you want....
Matteo Comune
Thanks to them I'm learning a lot…
Thanks to them I'm learning a lot faster because they help you to understand everything from scratch. It's the best website that helps people with no background in IT...
Yuliana Cadavid
great course for beginners
great course for beginners, they test your knowledge in every lesson...
Elpunzon
I am enjoying my Codefinity experience…
I am enjoying my Codefinity experience learning Python. The self-paced way of learning is great because I can fit it into my schedule...
Alexandru Alexandru
Is nice to learn from codefinity
Is nice to learn from codefinity. Its easy and have good examples on what I learned here...
jacob Templet
Easy to follow along with and provides…
Easy to follow along with and provides challenge in my every day life. The challenge keeps me wanting to learn day after day...
Elan
Codefinity is a comprehensive learning…
Codefinity is a comprehensive learning tool to help you develop your skills as a software engineer or data scientist. The exercises are fun and a good way to sharpen your skills...
Thibault
First time learning how to code
First time learning how to code and successfully doing so with codefinity - thank you...
Adrien Morel
Well designed for total beginners
Well designed for total beginners, incremental progress and makes me feel confident....
_Gracy
it's simply perfectly well explained
it's simply perfectly well explained! so far I have not experienced any difficulty because everything is so well managed...
Data Engineer
Certificado de Conclusão
Mostre suas habilidades recém-adquiridas. Você merece
Discover more
Learning tracks
Learning tracks
trilha
Somente para Ultimate
Web Development with C#
7 Cursos
397 Tarefas
Iniciante
4.8
(2180)
trilha
Somente para Ultimate
SQL do Zero ao Herói
4 Cursos
153 Tarefas
Iniciante
4.7
(2427)
trilha
Somente para Ultimate
C++ para Iniciantes
6 Cursos
159 Tarefas
Iniciante
4.4
(375)
trilha
Somente para Ultimate
Game Development with Unity
3 Cursos
153 Tarefas
Iniciante
4.7
(47)
trilha
Somente para Ultimate
Torne-se um Desenvolvedor React
5 Cursos
119 Tarefas
Intermediário
4.7
(53)
trilha
Somente para Ultimate
Web & Cloud Fundamentals
4 Cursos
173 Tarefas
Iniciante
4.7
(629)
trilha
Somente para Ultimate
Excel from Zero to Hero
4 Cursos
53 Tarefas
Iniciante
4.7
(146)
trilha
Somente para Ultimate
Data Analyst Foundation
4 Cursos
138 Tarefas
Iniciante
4.8
(2219)
trilha
Somente para Ultimate
Essenciais de Java
6 Cursos
406 Tarefas
Iniciante
4.7
(145)
trilha
Somente para Ultimate
Python: Além do Intermediário
4 Cursos
1 Projeto
242 Tarefas
Iniciante
4.7
(5851)
trilha
Somente para Ultimate
Desenvolvimento Web Full Stack
7 Cursos
440 Tarefas
Iniciante
4.7
(754)
trilha
Somente para Ultimate
Fundação de Desenvolvimento Frontend
6 Cursos
427 Tarefas
Intermediário
4.7
(726)
trilha
Somente para Ultimate
Análise e Visualização de Dados em Python
5 Cursos
168 Tarefas
Iniciante
4.7
(597)
trilha
Somente para Ultimate
Fundamentos de Aprendizado de Máquina
4 Cursos
1 Projeto
87 Tarefas
Avançado
4.6
(96)
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