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
while.pdf
Search
Jussi Pohjolainen
April 14, 2020
Technology
0
74
while.pdf
simple while
Jussi Pohjolainen
April 14, 2020
Tweet
Share
More Decks by Jussi Pohjolainen
See All by Jussi Pohjolainen
Introduction to Python (under construction)
pohjus
0
1.9k
Sustainability in Web Development - How to Optimize React Apps?
pohjus
0
160
Modern software development and fundamentals of AI
pohjus
0
150
C / C++ - language
pohjus
1
490
TypeScript for JS Developers
pohjus
0
420
Introduction to SwiftUI (2025-04-22)
pohjus
0
250
Kotlin Coroutines
pohjus
0
540
Android HTTP Clients
pohjus
0
530
Introduction to Jetpack Compose
pohjus
2
910
Other Decks in Technology
See All in Technology
JAWS DAYS 2026でAIの「もやっと」感が解消された話
smt7174
1
110
【社内勉強会】新年度からコーディングエージェントを使いこなす - 構造と制約で引き出すClaude Codeの実践知
nwiizo
29
14k
「AIエージェントで変わる開発プロセス―レビューボトルネックからの脱却」
lycorptech_jp
PRO
0
180
CloudFrontのHost Header転送設定でパケットの中身はどう変わるのか?
nagisa53
1
220
20260323_データ分析基盤でGeminiを使う話
1210yuichi0
0
190
How to install a gem
indirect
0
1.9k
互換性のある(らしい)DBへの移行など考えるにあたってたいへんざっくり
sejima
PRO
0
310
The essence of decision-making lies in primary data
kaminashi
0
180
Why we keep our community?
kawaguti
PRO
0
330
GitHub Copilot CLI で Azure Portal to Bicep
tsubakimoto_s
0
290
Sansanの認証基盤を支えるアーキテクチャとその振り返り
sansantech
PRO
1
120
OCI技術資料 : 証明書サービス概要
ocise
1
7.1k
Featured
See All Featured
brightonSEO & MeasureFest 2025 - Christian Goodrich - Winning strategies for Black Friday CRO & PPC
cargoodrich
3
130
Mozcon NYC 2025: Stop Losing SEO Traffic
samtorres
0
190
BBQ
matthewcrist
89
10k
AI: The stuff that nobody shows you
jnunemaker
PRO
4
500
Getting science done with accelerated Python computing platforms
jacobtomlinson
2
150
So, you think you're a good person
axbom
PRO
2
2k
B2B Lead Gen: Tactics, Traps & Triumph
marketingsoph
0
86
Art, The Web, and Tiny UX
lynnandtonic
304
21k
A Tale of Four Properties
chriscoyier
163
24k
Templates, Plugins, & Blocks: Oh My! Creating the theme that thinks of everything
marktimemedia
31
2.7k
30 Presentation Tips
portentint
PRO
1
260
Writing Fast Ruby
sferik
630
63k
Transcript
i = 0 while i < 3: print(i) i =
i + 1 > python code.py
i = 0 while i < 3: print(i) i =
i + 1 > python code.py 0 < 3 → True
i = 0 while i < 3: print(i) i =
i + 1 > python code.py 0 print(0)
i = 0 while i < 3: print(i) i =
i + 1 > python code.py 0 i = 0 + 1 → i = 1
i = 0 while i < 3: print(i) i =
i + 1 > python code.py 0 1 < 3 → True
i = 0 while i < 3: print(i) i =
i + 1 > python code.py 0 1 print(1)
i = 0 while i < 3: print(i) i =
i + 1 > python code.py 0 1 i = 1 + 1 → i = 2
i = 0 while i < 3: print(i) i =
i + 1 > python code.py 0 1 2 < 3 → True
i = 0 while i < 3: print(i) i =
i + 1 > python code.py 0 1 2 print(2)
i = 0 while i < 3: print(i) i =
i + 1 > python code.py 0 1 2 i = 2 + 1 → i = 3
i = 0 while i < 3: print(i) i =
i + 1 > python code.py 0 1 2 3 < 3 → False
i = 0 while i < 3: print(i) i =
i + 1 > python code.py 0 1 2