Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Introdução à Programação com Python - Parte 4
Search
Ana Paula Mendes
June 19, 2020
Programming
1
73
Introdução à Programação com Python - Parte 4
Sumário:
Laço for;
Laço while.
Ana Paula Mendes
June 19, 2020
Tweet
Share
More Decks by Ana Paula Mendes
See All by Ana Paula Mendes
Aprendendo sobre Complexidade de Algoritmos com o Timsort
anapaulamendes
0
140
Criando uma API async com rate limit e testável
anapaulamendes
0
49
Backend + IA: Criando uma API para inferir diagnóstico de diabetes
anapaulamendes
0
69
Já ouviu a palavra do FastAPI hoje?
anapaulamendes
1
260
Desbravando HTTP com http.server
anapaulamendes
2
170
Dados categóricos em árvore de decisão utilizando libs Python
anapaulamendes
1
660
Introdução à Programação com Python - Parte 3
anapaulamendes
1
96
Construindo experiências antes do mercado
anapaulamendes
0
150
Introdução à Programação com Python - Parte 2
anapaulamendes
3
160
Other Decks in Programming
See All in Programming
Spring gRPC で始める gRPC 入門 / Introduction to gRPC with Spring gRPC
mackey0225
0
130
TVer iOSチームの共通認識の作り方 - Findy Job LT iOSアプリ開発の裏側 開発組織が向き合う課題とこれから
techtver
PRO
0
710
CQRS/ESのクラスとシステムフロー ~ RailsでフルスクラッチでCQRSESを組んで みたことから得た学び~
suzukimar
0
190
コードに語らせよう――自己ドキュメント化が内包する楽しさについて / Let the Code Speak
nrslib
5
1k
DevDay2025-OracleDatabase-kernel-addressing-history
oracle4engineer
PRO
7
1.6k
primeNumberでのRBS導入の現在 && RBS::Traceでinline RBSを拡充してみた
mnmandahalf
0
250
抽象データ型について学んだ
ryounasso
0
210
RubyKaigi Hack Space in Tokyo & 函館最速 "予習" 会 / RubyKaigi Hack Space in Tokyo & The Fastest Briefing of RubyKaigi 2026 in Hakodate
moznion
1
120
Rethinking Data Access: The New httpResource in Angular
manfredsteyer
PRO
0
220
JSAI2025 RecSysChallenge2024 優勝報告
unonao
1
380
イベントソーシングとAIの親和性ー物語とLLMに理解できるデータ
tomohisa
1
160
AIエージェントによるテストフレームワーク Arbigent
takahirom
0
280
Featured
See All Featured
Producing Creativity
orderedlist
PRO
346
40k
How to Think Like a Performance Engineer
csswizardry
23
1.6k
How to Ace a Technical Interview
jacobian
276
23k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
34
3k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
45
7.3k
Practical Orchestrator
shlominoach
188
11k
The Pragmatic Product Professional
lauravandoore
35
6.7k
RailsConf 2023
tenderlove
30
1.1k
VelocityConf: Rendering Performance Case Studies
addyosmani
329
24k
Navigating Team Friction
lara
186
15k
実際に使うSQLの書き方 徹底解説 / pgcon21j-tutorial
soudai
PRO
180
53k
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
48
5.4k
Transcript
ANA NO TERMINAL Ana Paula Mendes I n t r
o d u ç ã o à p r o g r a m a ç ã o c o m P y t h o n - p a r t e 4 @ananoterminal • @ananoterminal • @ananoterminal •
@ananoterminal • BACHARELANDA EM CIÊNCIA DA COMPUTAÇÃO - UFPI TÉCNICA
EM DESENVOLVIMENTO DE SOFTWARE - IFPI DESENVOLVEDORA FULL STACK AMO OPEN SOURCE Boas vindas again! ana no terminal ana Paula mendes
@ananoterminal • @ananoterminal • @ananoterminal • Laços de Repetição
Para que servem os laços de repetição? Iterar computacionalmente de
forma automatizada. @ananoterminal •
revisão Listas; Tuplas; @ananoterminal •
Laços de Repetição for Itera sobre listas/tuplas; while Itera a
partir de condições; @ananoterminal •
for <var> in <lista/tupla>: COMANDOS Laço for @ananoterminal • COMANDOS_1
True False CONDIÇÃO
while <condição>: COMANDOS Laço while @ananoterminal • COMANDOS_1 True False
CONDIÇÃO
Escreva um algoritmo que lê 10 valores e diz quantos
desses valores são negativos, positivos, ímpares, pares, ou zero. Exercício @ananoterminal •
@ananoterminal • ANA PAULA MENDES @ananoterminal TWITTER INSTAGRAM E-MAIL
[email protected]
obrigada :)