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
61
while.pdf
simple while
Jussi Pohjolainen
April 14, 2020
Tweet
Share
More Decks by Jussi Pohjolainen
See All by Jussi Pohjolainen
Sustainability in Web Development - How to Optimize React Apps?
pohjus
0
69
Modern software development and fundamentals of AI
pohjus
0
85
C / C++ - language
pohjus
1
400
TypeScript for JS Developers
pohjus
0
350
Introduction to SwiftUI V2
pohjus
0
170
Kotlin Coroutines
pohjus
0
440
Android HTTP Clients
pohjus
0
440
Android HTTP Clients - v2
pohjus
0
38
Introduction to Jetpack Compose
pohjus
2
730
Other Decks in Technology
See All in Technology
開発組織を進化させる!AWSで実践するチームトポロジー
iwamot
2
500
Cracking the Coding Interview 6th Edition
gdplabs
14
28k
自分だけの仮想クラスタを高速かつ効率的に作る kubefork
donkomura
0
110
IAMポリシーのAllow/Denyについて、改めて理解する
smt7174
2
210
株式会社Awarefy(アウェアファイ)会社説明資料 / Awarefy-Company-Deck
awarefy
3
11k
Snowflake ML モデルを dbt データパイプラインに組み込む
estie
0
110
OCI Success Journey OCIの何が評価されてる?疑問に答える事例セミナー(2025年2月実施)
oracle4engineer
PRO
2
180
Amazon Aurora のバージョンアップ手法について
smt7174
2
180
開発者のための FinOps/FinOps for Engineers
oracle4engineer
PRO
2
220
プルリクエストレビューを終わらせるためのチーム体制 / The Team for Completing Pull Request Reviews
nekonenene
1
260
いまからでも遅くない!コンテナでWebアプリを動かしてみよう!コンテナハンズオン編
nomu
0
170
急成長する企業で作った、エンジニアが輝ける制度/ 20250227 Rinto Ikenoue
shift_evolve
0
190
Featured
See All Featured
The Art of Delivering Value - GDevCon NA Keynote
reverentgeek
11
1.3k
Into the Great Unknown - MozCon
thekraken
35
1.6k
How to train your dragon (web standard)
notwaldorf
91
5.9k
Agile that works and the tools we love
rasmusluckow
328
21k
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
4
380
jQuery: Nuts, Bolts and Bling
dougneiner
63
7.7k
Stop Working from a Prison Cell
hatefulcrawdad
268
20k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
100
18k
Practical Tips for Bootstrapping Information Extraction Pipelines
honnibal
PRO
13
1k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
666
120k
Raft: Consensus for Rubyists
vanstee
137
6.8k
Visualization
eitanlees
146
15k
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