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
Sponsored
·
Ship Features Fearlessly
Turn features on and off without deploys. Used by thousands of Ruby developers.
→
Jussi Pohjolainen
April 14, 2020
Technology
76
0
Share
Embed
Copy iframe code
Copy JS code
Copy link
Start on current slide
while.pdf
simple while
Jussi Pohjolainen
April 14, 2020
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
180
Modern software development and fundamentals of AI
pohjus
0
170
C / C++ - language
pohjus
1
530
TypeScript for JS Developers
pohjus
0
440
Introduction to SwiftUI (2025-04-22)
pohjus
0
290
Kotlin Coroutines
pohjus
0
560
Android HTTP Clients
pohjus
0
540
Introduction to Jetpack Compose
pohjus
2
970
Other Decks in Technology
See All in Technology
AIコーディングの次。コードレビューと理解負荷を解消して組織の開発生産性を高める
moongift
PRO
2
2.3k
ラジオの科学
frievea
0
280
関東Kaggler会発表資料
takoi
1
200
侵入は突然に 〜 IoTマルウェアと悪用される家庭の機器 ~ / When Intrusion Strikes: IoT Malware and the Abuse of Home Devices
nttcom
0
1.6k
SmartHR Engineering Team Deck
smarthr
1
1.4k
FORENSIA: ローカルLLMフォレンジックハーネス
sumeshi
2
350
モダンフロントエンド 開発研修
recruitengineers
PRO
4
560
え?フロントエンドエンジニアの ワイがインフラも!?
puku0x
1
440
【CEDEC2026】『GRANBLUE FANTASY: Relink - Endless Ragnarok』のバトル制作事例 ~最高のキャラゲーを目指して~
cygames
PRO
0
230
ガバメントクラウドでのランサムウェア対策
techniczna
2
1k
AI時代の強いチームの作り方
yuukiyo
26
16k
ホームラボ紹介
y_sera15
0
130
Featured
See All Featured
Skip the Path - Find Your Career Trail
mkilby
1
180
Jamie Indigo - Trashchat’s Guide to Black Boxes: Technical SEO Tactics for LLMs
techseoconnect
PRO
0
590
16th Malabo Montpellier Forum Presentation
akademiya2063
PRO
0
340
Practical Orchestrator
shlominoach
191
12k
The browser strikes back
jonoalderson
0
1.5k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
666
130k
SEOcharity - Dark patterns in SEO and UX: How to avoid them and build a more ethical web
sarafernandez
0
240
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
46
2.9k
Navigating the Design Leadership Dip - Product Design Week Design Leaders+ Conference 2024
apolaine
1
390
WENDY [Excerpt]
tessaabrams
11
39k
Bioeconomy Workshop: Dr. Julius Ecuru, Opportunities for a Bioeconomy in West Africa
akademiya2063
PRO
1
210
4 Signs Your Business is Dying
shpigford
187
22k
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