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
73
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.8k
Sustainability in Web Development - How to Optimize React Apps?
pohjus
0
150
Modern software development and fundamentals of AI
pohjus
0
140
C / C++ - language
pohjus
1
480
TypeScript for JS Developers
pohjus
0
410
Introduction to SwiftUI (2025-04-22)
pohjus
0
240
Kotlin Coroutines
pohjus
0
530
Android HTTP Clients
pohjus
0
520
Introduction to Jetpack Compose
pohjus
2
890
Other Decks in Technology
See All in Technology
Frontier Agents (Kiro autonomous agent / AWS Security Agent / AWS DevOps Agent) の紹介
msysh
3
170
SREチームをどう作り、どう育てるか ― Findy横断SREのマネジメント
rvirus0817
0
270
Codex 5.3 と Opus 4.6 にコーポレートサイトを作らせてみた / Codex 5.3 vs Opus 4.6
ama_ch
0
150
Webhook best practices for rock solid and resilient deployments
glaforge
1
290
Bill One 開発エンジニア 紹介資料
sansan33
PRO
5
17k
Contract One Engineering Unit 紹介資料
sansan33
PRO
0
13k
Claude_CodeでSEOを最適化する_AI_Ops_Community_Vol.2__マーケティングx_AIはここまで進化した.pdf
riku_423
2
570
データの整合性を保ちたいだけなんだ
shoheimitani
8
3.1k
マーケットプレイス版Oracle WebCenter Content For OCI
oracle4engineer
PRO
5
1.6k
Embedded SREの終わりを設計する 「なんとなく」から計画的な自立支援へ
sansantech
PRO
3
2.5k
Bill One急成長の舞台裏 開発組織が直面した失敗と教訓
sansantech
PRO
2
380
茨城の思い出を振り返る ~CDKのセキュリティを添えて~ / 20260201 Mitsutoshi Matsuo
shift_evolve
PRO
1
290
Featured
See All Featured
Unsuck your backbone
ammeep
671
58k
Future Trends and Review - Lecture 12 - Web Technologies (1019888BNR)
signer
PRO
0
3.2k
Build your cross-platform service in a week with App Engine
jlugia
234
18k
GraphQLとの向き合い方2022年版
quramy
50
14k
How To Speak Unicorn (iThemes Webinar)
marktimemedia
1
380
Building Flexible Design Systems
yeseniaperezcruz
330
40k
The Language of Interfaces
destraynor
162
26k
Marketing to machines
jonoalderson
1
4.6k
How STYLIGHT went responsive
nonsquared
100
6k
Technical Leadership for Architectural Decision Making
baasie
1
240
The Illustrated Children's Guide to Kubernetes
chrisshort
51
51k
Winning Ecommerce Organic Search in an AI Era - #searchnstuff2025
aleyda
1
1.9k
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