• Complain

Stuart Reges - Building Python Programs

Here you can read online Stuart Reges - Building Python Programs full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. year: 2018, publisher: Pearson, genre: Computer. Description of the work, (preface) as well as reviews are available. Best literature library LitArk.com created for fans of good reading and offers a wide selection of genres:

Romance novel Science fiction Adventure Detective Science History Home and family Prose Art Politics Computer Non-fiction Religion Business Children Humor

Choose a favorite category and find really read worthwhile books. Enjoy immersion in the world of imagination, feel the emotions of the characters or learn something new for yourself, make an fascinating discovery.

Stuart Reges Building Python Programs

Building Python Programs: summary, description and annotation

We offer to read an annotation, description, summary or preface (depends on what the author of the book "Building Python Programs" wrote himself). If you haven't found the necessary information about the book — write in the comments, we will try to find it.

Stuart Reges: author's other books


Who wrote Building Python Programs? Find out the surname, the name of the author of the book and a list of all author's works by series.

Building Python Programs — read online for free the complete book (whole text) full work

Below is the text of the book, divided by pages. System saving the place of the last page read, allows you to conveniently read the book "Building Python Programs" online for free, without having to search again every time where you left off. Put a bookmark, and you can go to the page where you finished reading at any time.

Light

Font size:

Reset

Interval:

Bookmark:

Make
Building Python Programs First Edition Stuart Reges University of Washington - photo 1
Building Python Programs

First Edition

Stuart Reges

University of Washington

Marty Stepp

Stanford University

Allison Obourn

University of Arizona

330 Hudson Street NY NY 10013 Senior Vice President Courseware Portfolio - photo 2

330 Hudson Street, NY, NY 10013

Senior Vice President Courseware Portfolio Management: Marcia Horton
Vice President, Portfolio Management: Engineering, Computer Science & Global Editions: Julian Partridge
Executive Portfolio Manager: Matt Goldstein
Portfolio Management Assistant: Meghan Jacoby
Field Marketing Manager: Demetrius Hall
Product Marketing Manager: Yvonne Vannatta
Marketing Assistant: Jon Bryant
Managing Producer: Scott Disanno
Content Producer: Amanda Brands
Project Manager: Rose Kernan, RPK Editorial Services
Manufacturing Buyer, Higher Ed, Lake Side Communications, Inc. (LSC): Maura Zaldivar-Garcia
Cover Design: Pearson CSC
R&P Manager: Ben Ferrini
Inventory Manager: Bruce Boundy
Cover Art: Matt Walford/Cultura/Getty Images
Full Service Vendor: Pearson CSC
Full-Service Project Management: Pearson CSC/Rose Kernan
Composition: Pearson CSC
Printer/Binder: LSC Communications, Inc

The authors and publisher of this book have used their best efforts in preparing this book. These efforts include the development, research, and testing of the theories and programs to determine their effectiveness. The authors and publisher make no warranty of any kind, expressed or implied, with regard to these programs or to the documentation contained in this book. The authors and publisher shall not be liable in any event for incidental or consequential damages in connection with, or arising out of, the furnishing, performance, or use of these programs.

Copyright 2019 Pearson Education, Inc., Hoboken, New Jersey 07030. All rights reserved. Printed in the United States of America. This publication is protected by copyright, and permission should be obtained from the publisher prior to any prohibited reproduction, storage in a retrieval system, or transmission in any form or by any means, electronic, mechanical, photocopying, recording, or otherwise. For information regarding permissions, request forms and the appropriate contacts within the Pearson Education Global Rights & Permissions department, please visit www.pearsonhighed.com/permissions/.

Many of the designations by manufacturers and seller to distinguish their products are claimed as trademarks. Where those designations appear in this book, and the publisher was aware of a trademark claim, the designations have been printed in initial caps or all caps.

Unless otherwise indicated herein, any third-party trademarks that may appear in this work are the property of their respective owners and any references to third-party trademarks, logos or other trade dress are for demonstrative or descriptive purposes only. Such references are not intended to imply any sponsorship, endorsement, authorization, or promotion of Pearsons products by the owners of such marks, or any relationship between the owner and Pearson Education, Inc. or its affiliates, authors, licensees or distributors.

Library of Congress Cataloging-in-Publication Data

Names: Reges, Stuart, author. | Stepp, Martin, author. | Obourn, Allison, author.

Title: Building Python programs / Stuart Reges, University of Washington, Marty Stepp, Stanford University, Allison Obourn, University of Arizona.

Description: First edition. | New York, NY : Pearson, [2019] | Includes index.

Identifiers: LCCN 2018028848| ISBN 9780135205983 | ISBN 0135205980

Subjects: LCSH: Python (Computer program language)

Classification: LCC QA76.73.P98 R445 2019 | DDC 005.13/3dc23

LC record available at https://lccn.loc.gov/2018028848

1 18

ISBN 10 0-13-520598-0 ISBN 13 978-0-13-520598-3 Preface The Python - photo 3

ISBN 10: 0-13-520598-0

ISBN 13: 978-0-13-520598-3

Preface

The Python programming language has become enormously popular in recent years. Many people are impressed with how quickly you can learn Pythons simple and intuitive syntax and that has led many users to create popular libraries. Python was designed by Guido van Rossum who has been affectionaly dubbed Benevolent Dictator For Life (BDFL) by the Python community. He has said that he chose the name Python because he was in a slightly irreverent mood and that he is a big fan of Monty Pythons Flying Circus (a British comedy show). Who wouldnt want to learn a programming language named after a group of comedians?

Our new Building Python Programs text is designed for use in a first course in computer science. We have class-tested it with hundreds of undergraduates at the University of Arizona, most of whom were not computer science majors. This textbook is based on our previous text, Building Java Programs, now in its fourth edition. The Java text has proven effective in our class testing with thousands of students including our own at the University of Washington since 2007.

Introductory computer science courses have a long history at many universities of being killer courses with high failure rates. But as Douglas Adams says in The Hitchhikers Guide to the Galaxy, Dont panic. Students can master this material if they can learn it gradually.

Python has many attributes that make it an appealing language for a first computer science course. It has a simple and concise yet powerful syntax that makes it pleasant to learn and great for writing many common programs. A student can write their first Python program with only a single line of code, as opposed to several lines in most other languages such as Java or C++. Python includes a built-in interpreter and read-evaluate-print loop (REPL) for quickly running and testing code, encouraging students to test and explore the language. Python also offers a rich set of libraries that students can use for graphics, animation, math, scientific computing, games, and much more. This text has been built from the start for Python 3, the most modern version of the language as of this writing, and it embraces the modern features and idioms of that version of the language.

Our teaching materials are based on a back to basics approach that focuses on procedural programming and program decomposition. This is also called the objects later approach, as opposed to the objects early approach taught in some schools. We know from years of experience that a broad range of scientists, engineers, and others can learn how to program in a procedural manner. Once we have built a solid foundation of procedural techniques, we turn to object-oriented programming. By the end of the text, students will have learned about both styles of programming.

The following are the key features of our approach and materials:

  • Focus on problem solving. Many textbooks focus on language details when they introduce new constructs. We focus instead on problem solving. What new problems can be solved with each construct? What pitfalls are novices likely to encounter along the way? What are the most common ways to use a new construct?

  • Emphasis on algorithmic thinking. Our procedural approach allows us to emphasize algorithmic problem solving: breaking a large problem into smaller problems, using pseudocode to refine an algorithm, and grappling with the challenge of expressing a large program algorithmically.

Next page
Light

Font size:

Reset

Interval:

Bookmark:

Make

Similar books «Building Python Programs»

Look at similar books to Building Python Programs. We have selected literature similar in name and meaning in the hope of providing readers with more options to find new, interesting, not yet read works.


Reviews about «Building Python Programs»

Discussion, reviews of the book Building Python Programs and just readers' own opinions. Leave your comments, write what you think about the work, its meaning or the main characters. Specify what exactly you liked and what you didn't like, and why you think so.