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
91
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
200
Criando uma API async com rate limit e testável
anapaulamendes
0
65
Backend + IA: Criando uma API para inferir diagnóstico de diabetes
anapaulamendes
0
89
Já ouviu a palavra do FastAPI hoje?
anapaulamendes
1
270
Desbravando HTTP com http.server
anapaulamendes
2
190
Dados categóricos em árvore de decisão utilizando libs Python
anapaulamendes
1
690
Introdução à Programação com Python - Parte 3
anapaulamendes
1
110
Construindo experiências antes do mercado
anapaulamendes
0
160
Introdução à Programação com Python - Parte 2
anapaulamendes
3
170
Other Decks in Programming
See All in Programming
iOSアプリでフロントエンドと仲良くする
ryunakayama
0
120
Metaprogramming isn't real, it can't hurt you
okuramasafumi
0
130
PJのドキュメントを全部Git管理にしたら、一番喜んだのはAIだった
nanaism
0
210
AI主導でFastAPIのWebサービスを作るときに 人間が構造化すべき境界線
okajun35
0
260
Lambda のコードストレージ容量に気をつけましょう
tattwan718
0
200
AI巻き込み型コードレビューのススメ
nealle
2
2.3k
要求定義・仕様記述・設計・検証の手引き - 理論から学ぶ明確で統一された成果物定義
orgachem
PRO
1
390
Rubyと楽しいをつくる / Creating joy with Ruby
chobishiba
0
190
Package Management Learnings from Homebrew
mikemcquaid
0
280
AWS Infrastructure as Code の新機能 2025 総まとめ~ SA 4人による怒涛のデモ祭り ~
konokenj
8
1.5k
Claude Codeセッション現状確認 2026福岡 / fukuoka-aicoding-00-beacon
monochromegane
3
240
CSC307 Lecture 11
javiergs
PRO
0
580
Featured
See All Featured
YesSQL, Process and Tooling at Scale
rocio
174
15k
Leveraging LLMs for student feedback in introductory data science courses - posit::conf(2025)
minecr
1
180
Marketing to machines
jonoalderson
1
5k
Impact Scores and Hybrid Strategies: The future of link building
tamaranovitovic
0
210
[Rails World 2023 - Day 1 Closing Keynote] - The Magic of Rails
eileencodes
38
2.7k
Navigating Weather and Climate Data
rabernat
0
120
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
35
2.4k
BBQ
matthewcrist
89
10k
Darren the Foodie - Storyboard
khoart
PRO
3
2.6k
The Myth of the Modular Monolith - Day 2 Keynote - Rails World 2024
eileencodes
26
3.4k
Learning to Love Humans: Emotional Interface Design
aarron
275
41k
The Curse of the Amulet
leimatthew05
1
9.1k
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 :)