• Complain

Brian Overland - Supercharged Python: Take Your Code to the Next Level

Here you can read online Brian Overland - Supercharged Python: Take Your Code to the Next Level full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. year: 2019, publisher: Addison-Wesley Professional, 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.

Brian Overland Supercharged Python: Take Your Code to the Next Level
  • Book:
    Supercharged Python: Take Your Code to the Next Level
  • Author:
  • Publisher:
    Addison-Wesley Professional
  • Genre:
  • Year:
    2019
  • Rating:
    4 / 5
  • Favourites:
    Add to favourites
  • Your mark:
    • 80
    • 1
    • 2
    • 3
    • 4
    • 5

Supercharged Python: Take Your Code to the Next Level: summary, description and annotation

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

Brian Overland: author's other books


Who wrote Supercharged Python: Take Your Code to the Next Level? Find out the surname, the name of the author of the book and a list of all author's works by series.

Supercharged Python: Take Your Code to the Next Level — 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 "Supercharged Python: Take Your Code to the Next Level" 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
About This eBook ePUB is an open industry-standard format for eBooks However - photo 1
About This eBook

ePUB is an open, industry-standard format for eBooks. However, support of ePUB and its many features varies across reading devices and applications. Use your device or app settings to customize the presentation to your liking. Settings that you can customize often include font, font size, single or double column, landscape or portrait mode, and figures that you can click or tap to enlarge. For additional information about the settings and features on your reading device or app, visit the device manufacturers Web site.

Many titles include programming code or configuration examples. To optimize the presentation of these elements, view the eBook in single-column, landscape mode and adjust the font size to the smallest setting. In addition to presenting code and configurations in the reflowable text format, we have included images of the code that mimic the presentation found in the print book; therefore, where the reflowable format may compromise the presentation of the code listing, you will see a Click here to view code image link. Click the link to view the print-fidelity code image. To return to the previous page viewed, click the Back button on your device or app.

Supercharged Python
Supercharged Python

Brian Overland

John Bennett

Boston Columbus New York San Francisco Amsterdam Cape Town Dubai London Madrid - photo 2

Boston Columbus New York San Francisco Amsterdam Cape Town
Dubai London Madrid Milan Munich Paris Montreal Toronto Delhi Mexico City
So Paulo Sydney Hong Kong Seoul Singapore Taipei Tokyo

Many of the designations used by manufacturers and sellers 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 with initial capital letters or in all capitals.

The authors and publisher have taken care in the preparation of this book, but make no expressed or implied warranty of any kind and assume no responsibility for errors or omissions. No liability is assumed for incidental or consequential damages in connection with or arising out of the use of the information or programs contained herein.

For information about buying this title in bulk quantities, or for special sales opportunities (which may include electronic versions; custom cover designs; and content particular to your business, training goals, marketing focus, or branding interests), please contact our corporate sales department at or (800) 382-3419.

For government sales inquiries, please contact .

For questions about sales outside the U.S., please contact .

Visit us on the Web:

Library of Congress Control Number: 2019936408

Copyright 2019 Pearson Education, Inc.

Cover illustration: Open Studio/Shutterstock

All rights reserved. This publication is protected by copyright, and permission must 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 likewise. For information regarding permissions, request forms and the appropriate contacts within the Pearson Education Global Rights & Permissions Department, please visit www.pearsoned.com/permissions/.

ISBN-13: 978-0-13-515994-1

ISBN-10: 0-13-515994-6

1 19

To my beautiful and brilliant mother, Betty P. M. Overland....

All the world is mad except for me and thee. Stay a little.

Brian

To my parents, who did so much to shape who I am.

John

Preface

Books on Python aimed for the absolute beginner have become a cottage industry these days. Everyone and their dog, it seems, wants to chase the Python.

Were a little biased, but one book we especially recommend is Python Without Fear. It takes you by the hand and explains the major features one at a time. But what do you do after you know a little of the language but not enough to call yourself an expert? How do you learn enough to get a job or to write major applications?

Thats what this book is for: to be the second book you ever buy on Python and possibly the last.

What Makes Python Special?

Its safe to say that many people are attracted to Python because it looks easier than C++. That may be (at least in the beginning), but underneath this so-called easy language is a tool of great power, with many shortcuts and software libraries called packages thatin some casesdo most of the work for you. These let you create some really impressive software, outputting beautiful graphs and manipulating large amounts of data.

For most people, it may take years to learn all the shortcuts and advanced features. This book is written for people who want to get that knowledge now, to get closer to being a Python expert much faster.

Paths to Learning: Where Do I Start?

This book offers different learning paths for different people.

  • Youre rusty: If youve dabbled in Python but youre a little rusty, you may want to take a look at or only take a brief look at it.

  • You know the basics but are still learning:Start with , which survey the abilities of strings and lists. This survey includes some advanced abilities of these data structures that people often miss the first time they learn Python.

  • Your understanding of Python is strong, but you dont know everything yet: Start with , which lists 22 programming shortcuts unique to Python, that most people take a long time to fully learn.

  • You want to master special features: You can start in an area of specialty. For example, describes the different ways of handling text and binary files.

  • You want to learn advanced math and plotting software: If you want to do plotting, financial, or scientific applications, start with .

Clarity and Examples Are Everything

Even with advanced technology, our emphasis is on clarity, short examples, more clarity, and more examples. We emphasize an interactive approach, especially with the use of the IDLE environment, encouraging you to type in statements and see what they do. Text in bold represents lines for you to type in, or to be added or changed.

>>> print('Hello', 'my', 'world!')Hello my world!

Several of the applications in this book are advanced pieces of software, including a Deck object, a fully functional RPN language interpreter, and a multifaceted stock-market program that presents the user with many choices. With these applications, we start with simple examples in the beginning, finally showing all the pieces in context. This approach differs from many books, which give you dozens of functions all out of order, with no sense of architecture. In this book, architecture is everything.

You can download examples from brianoverland.com/books.

Learning Aids: Icons

This book makes generous use of tables for ease of reference, as well as conceptual art (figures). Our experience is that while poorly conceived figures can be a distraction, the best figures can be invaluable. A picture is worth a thousand words. Sometimes, more.

We also believe that in discussing plotting and graphics software, theres no substitute for showing all the relevant screen shots.

Next page
Light

Font size:

Reset

Interval:

Bookmark:

Make

Similar books «Supercharged Python: Take Your Code to the Next Level»

Look at similar books to Supercharged Python: Take Your Code to the Next Level. 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 «Supercharged Python: Take Your Code to the Next Level»

Discussion, reviews of the book Supercharged Python: Take Your Code to the Next Level 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.