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
75
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
71
Já ouviu a palavra do FastAPI hoje?
anapaulamendes
1
260
Desbravando HTTP com http.server
anapaulamendes
2
180
Dados categóricos em árvore de decisão utilizando libs Python
anapaulamendes
1
660
Introdução à Programação com Python - Parte 3
anapaulamendes
1
98
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
カクヨムAndroidアプリのリブート
numeroanddev
0
430
ReadMoreTextView
fornewid
1
450
KotlinConf 2025 現地で感じたServer-Side Kotlin
n_takehata
1
220
Is Xcode slowly dying out in 2025?
uetyo
1
170
生成AIコーディングとの向き合い方、AIと共創するという考え方 / How to deal with generative AI coding and the concept of co-creating with AI
seike460
PRO
1
320
セキュリティマネジャー廃止とクラウドネイティブ型サンドボックス活用
kazumura
1
190
CursorはMCPを使った方が良いぞ
taigakono
0
140
業務自動化をJavaとSeleniumとAWS Lambdaで実現した方法
greenflagproject
1
120
Spring gRPC で始める gRPC 入門 / Introduction to gRPC with Spring gRPC
mackey0225
2
520
C++20 射影変換
faithandbrave
0
500
WindowInsetsだってテストしたい
ryunen344
1
190
第9回 情シス転職ミートアップ 株式会社IVRy(アイブリー)の紹介
ivry_presentationmaterials
1
190
Featured
See All Featured
The Art of Programming - Codeland 2020
erikaheidi
54
13k
Fantastic passwords and where to find them - at NoRuKo
philnash
51
3.3k
Building Better People: How to give real-time feedback that sticks.
wjessup
367
19k
No one is an island. Learnings from fostering a developers community.
thoeni
21
3.3k
Designing for Performance
lara
609
69k
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
48
5.4k
Balancing Empowerment & Direction
lara
1
340
Building Applications with DynamoDB
mza
95
6.5k
Done Done
chrislema
184
16k
Facilitating Awesome Meetings
lara
54
6.4k
Put a Button on it: Removing Barriers to Going Fast.
kastner
60
3.9k
XXLCSS - How to scale CSS and keep your sanity
sugarenia
248
1.3M
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 :)