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
75
0
Share
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
170
Modern software development and fundamentals of AI
pohjus
0
160
C / C++ - language
pohjus
1
520
TypeScript for JS Developers
pohjus
0
430
Introduction to SwiftUI (2025-04-22)
pohjus
0
260
Kotlin Coroutines
pohjus
0
550
Android HTTP Clients
pohjus
0
530
Introduction to Jetpack Compose
pohjus
2
930
Other Decks in Technology
See All in Technology
最低限これだけ押さえれ大丈夫_Claude Enterprise/Team企業展開ガバナンス入門
tkikuchi
1
560
Datadog 認定試験の概要と対策
uechishingo
0
210
マーケットプレイス版Oracle WebCenter Content For OCI
oracle4engineer
PRO
5
1.7k
Unlocking the Apps
pimterry
0
130
ルールやカスタム機能、どう使う?理想の出力を引き出すために今知りたいIBM Bob 5つの機能
muehara
0
150
Javaで学ぶSOLID原則
negima
1
240
大学生が本気でDatabricksを活用してDiscordサークルをデータ駆動させてみた
phantomjuju
1
300
美味しいスイスチーズを作ろう🧀🐭
taigamikami
1
190
さきさん文庫の書籍ができるまで
sakiengineer
0
320
Oracle AI Database@Google Cloud:サービス概要のご紹介
oracle4engineer
PRO
6
1.5k
ITエンジニアを取り巻く環境とキャリアパス / A career path for Japanese IT engineers
takatama
4
1.8k
電子辞書Brainをネットに繋げてみた(自力編)
raspython3
0
380
Featured
See All Featured
What the history of the web can teach us about the future of AI
inesmontani
PRO
1
590
Mobile First: as difficult as doing things right
swwweet
225
10k
Faster Mobile Websites
deanohume
310
31k
Making the Leap to Tech Lead
cromwellryan
135
9.9k
The State of eCommerce SEO: How to Win in Today's Products SERPs - #SEOweek
aleyda
2
11k
Getting science done with accelerated Python computing platforms
jacobtomlinson
2
210
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
55
3.4k
Embracing the Ebb and Flow
colly
88
5.1k
Redefining SEO in the New Era of Traffic Generation
szymonslowik
1
320
Automating Front-end Workflow
addyosmani
1370
210k
Context Engineering - Making Every Token Count
addyosmani
9
920
Building a A Zero-Code AI SEO Workflow
portentint
PRO
0
540
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