Ch04 - Michael A. Bauer PDF

Title Ch04 - Michael A. Bauer
Author Jake Thorburn
Course Computer science
Institution The University of Western Ontario
Pages 84
File Size 2.9 MB
File Type PDF
Total Downloads 121
Total Views 168

Summary

Michael A. Bauer...


Description

Chapter4:Loops

ChapterGoals • Toimplementwhileandforloops • Tohand‐tracetheexecutionofaprogram • Tobecomefamiliarwithcommonloopalgorithms • Tounderstandnestedloops • Toimplementprogramsthatreadandprocessdatasets • Touseacomputerforsimulations Inthischapter,youwilllearnaboutloopstatementsinPython,aswell astechniquesforwritingprogramsthatsimulateactivitiesinthereal world.

9/5/2019

2

Contents • Thewhile loop • ProblemSolving:Hand‐Tracing(HW) • Application:ProcessingSentinels • ProblemSolving:Storyboards(HW) • CommonLoopAlgorithms • Thefor loop • Nestedloops • ProcessingStrings • Application:RandomNumbersandSimulation • ProblemSolving:SolveaSimplerProblemFirst

9/5/2019

3

Thewhile Loop

9/5/2019

4

Thewhil whil while e Loop • Examplesofloopapplications • Calculatingcompoundinterest • Simulations,eventdrivenprograms • Drawingtiles… • Compoundinterestalgorithm(Chapter1)

Steps

9/5/2019

5

Planningthewhi whi whille Loop balance=10.0 target=100.0 year=0 rate=0.025 whilebalance...


Similar Free PDFs