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
150
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
73
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
Porting a visionOS App to Android XR
akkeylab
0
760
dbt民主化とLLMによる開発ブースト ~ AI Readyな分析サイクルを目指して ~
yoshyum
3
1.1k
可変変数との向き合い方 $$変数名が踊り出す$$ / php conference Variable variables
gunji
0
190
Yes, You Can Work on Rails & any other Gem
kaspth
0
100
20250708_JAWS_opscdk
takuyay0ne
2
130
テスターからテストエンジニアへ ~新米テストエンジニアが歩んだ9ヶ月振り返り~
non0113
2
230
おやつのお供はお決まりですか?@WWDC25 Recap -Japan-\(region).swift
shingangan
0
140
商品比較サービス「マイベスト」における パーソナライズレコメンドの第一歩
ucchiii43
0
180
AI時代の『改訂新版 良いコード/悪いコードで学ぶ設計入門』 / ai-good-code-bad-code
minodriven
24
9.7k
フロントエンドのパフォーマンスチューニング
koukimiura
5
2.1k
状態遷移図を書こう / Sequence Chart vs State Diagram
orgachem
PRO
2
210
階層化自動テストで開発に機動力を
ickx
0
200
Featured
See All Featured
How to Think Like a Performance Engineer
csswizardry
25
1.7k
Imperfection Machines: The Place of Print at Facebook
scottboms
267
13k
Testing 201, or: Great Expectations
jmmastey
43
7.6k
It's Worth the Effort
3n
185
28k
10 Git Anti Patterns You Should be Aware of
lemiorhan
PRO
656
60k
Code Review Best Practice
trishagee
69
19k
Bash Introduction
62gerente
613
210k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
45
7.5k
VelocityConf: Rendering Performance Case Studies
addyosmani
332
24k
Git: the NoSQL Database
bkeepers
PRO
430
65k
Statistics for Hackers
jakevdp
799
220k
The Myth of the Modular Monolith - Day 2 Keynote - Rails World 2024
eileencodes
26
2.9k
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 :)