• Complain

Matt Telles - Python Power!: The Comprehensive Guide

Here you can read online Matt Telles - Python Power!: The Comprehensive Guide 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: Course Technology PTR, 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.

Matt Telles Python Power!: The Comprehensive Guide
  • Book:
    Python Power!: The Comprehensive Guide
  • Author:
  • Publisher:
    Course Technology PTR
  • Genre:
  • Year:
    2018
  • Rating:
    3 / 5
  • Favourites:
    Add to favourites
  • Your mark:
    • 60
    • 1
    • 2
    • 3
    • 4
    • 5

Python Power!: The Comprehensive Guide: summary, description and annotation

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

Matt Telles: author's other books


Who wrote Python Power!: The Comprehensive Guide? Find out the surname, the name of the author of the book and a list of all author's works by series.

Python Power!: The Comprehensive Guide — 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 "Python Power!: The Comprehensive Guide" 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
Copyright

2008 Thomson Course Technology, a division of Thomson Learning Inc. All rights reserved. No part of this book may be reproduced or transmitted in any form or by any means, electronic or mechanical, including photocopying, recording, or by any information storage or retrieval system without written permission from Thomson Course Technology PTR, except for the inclusion of brief quotations in a review.

The Thomson Course Technology PTR logo and related trade dress are trademarks of Thomson Course Technology, a division of Thomson Learning Inc., and may not be used without written permission.

Python is a trademark of the Python Software Foundation.

Microsoft Windows is a registered trademark of Microsoft Corporation.

All other trademarks are the property of their respective owners.

Important: Thomson Course Technology PTR cannot provide software support. Please contact the appropriate software manufacturers technical support line or Web site for assistance.

Thomson Course Technology PTR and the author have attempted throughout this book to distinguish proprietary trademarks from descriptive terms by following the capitalization style used by the manufacturer.

Information contained in this book has been obtained by Thomson Course Technology PTR from sources believed to be reliable. However, because of the possibility of human or mechanical error by our sources, Thomson Course Technology PTR, or others, the Publisher does not guarantee the accuracy, adequacy, or completeness of any information and is not responsible for any errors or omissions or the results obtained from use of such information. Readers should be particularly aware of the fact that the Internet is an ever-changing entity. Some facts may have changed since this book went to press.

Educational facilities, companies, and organizations interested in multiple copies or licensing of this book should contact the Publisher for quantity discount information. Training manuals, CD-ROMs, and portions of this book are also available individually or can be tailored for specific needs.

ISBN-13: 978-1-59863-158-6

eISBN-10: 1-59863-159-4

Library of Congress Catalog Card Number: 2006923270

Printed in the United States of America

08 09 10 11 12 TW 10 9 8 7 6 5 4 3 2 1

Thomson Course Technology PTR a division of Thomson Learning Inc25 Thomson - photo 1

Thomson Course Technology PTR, a division of Thomson Learning Inc.25 Thomson PlaceBoston, MA 02210http://www.courseptr.com

Publisher and General Manager, Thomson Course Technology PTR: Stacy L. Hiquet Associate Director of Marketing: Sarah O'Donnell Manager of Editorial Services: Heather Talbot Marketing Manager: Mark Hughes Acquisitions Editor: Mitzi Koontz Marketing Assistant: Adena Flitt Project and Copy Editor: Marta Justak Technical Reviewer: Michael Dawson PTR Editorial Services Coordinator: Erin Johnson Interior Layout Tech: Value Chain International, Ltd. Cover Designer: Mike Tanamachi Indexer: Sharon Hilgenberg Proofreader: Steve Honeywell

Dedication

This book is dedicated to the ladies in my life: Teresa, Jenny, Rachel and Sarah .

Acknowledgments

The author would like to acknowledge the aid of the Python community and Usenet newsgroups in finding answers to all of the questions that eluded me.

A special thanks to Mike Dawson, who went well above and beyond the call of duty to help a poor programmer out with this book. Thanks, Mike, you did a great job!

Also, a small note of thanks to Marta, without whom this book would never have gotten off the ground. Thank you, dear. Now get back to work.

About the Author

Matt Telles is a 22-year veteran of the computer wars. Having moved from the mainframe world, with his beloved DEC 1091, he is now ensconced in the PC world of Windows and Linux. A long-time C++ programmer, he has since moved on to more modern languages like C#, Python, and PHP. The high point of his career is in writing his own biography for books.

Introduction
What Youll Find in This Book

Welcome to the world of Python! Within this book, you will find a complete introduction to the language, including insider tips and tricks, and basic knowledge that you will need to get started. If you are a beginning Python programmer, you will find enough here to get you going. If you are an experienced Python programmer, you will likely find a trick or two worth the price of admission. Within these covers, youll learn how to:

  • Write basic Python code.

  • Work with databases.

  • Work with Web pages and Web servers.

  • Create reusable Python code.

  • Work with files.

  • Create your own Python types.

Who This Book Is For

This book is intended for a programmer with some experience in the world of development. Although no prior expertise in Python is assumed, you will do just fine if you have worked with the language in the past. Beginning developers will learn enough to get started with the language and become proficient quickly. Experienced developers will quickly get up to speed with the language, and previous Python programmers will learn new things about the language they are accustomed to.

How This Book Is Organized

The book consists of 16 chapters, each of which addresses a specific area of Python programming. The chapters are set up individually so that you need not read them in any specific order. Simply leaf through to the section you are most interested in and refer to the content in that chapter.

introduces the Python language, explains where it came from, what it is used for, and explains how to download the interpreter and related applications.

consists of an overview of the elements of the language, including types, conventions, and structure of code.

discusses the individual tools that are a part of the Python distribution, including the Command Line compiler, the editor, and the integrated development environment.

discusses the basic data types in Python, showing you how to create them, use them, and convert between them.

introduces control flow and allows the reader to learn how to change the behavior of a Python application through looping and conditional structures.

introduces input and output functionality in Python, discussing how to write to the console window, files, and work with directories and drives.

introduces the concept of functions and modules, allowing the developer to encapsulate code for later reuse and integration into other applications.

discusses the topic of exception handling, discussing how to create, handle, and work with the exception functions in Python.

gives the developer a brief overview of object-oriented development, introducing the concepts and terminology used throughout the remainder of the book.

extends the concept of object-oriented development as it applies in Python, introducing the developer to classes, methods, and attributes.

discusses modules, both those that are built into the language and developed by external developers.

works with the default GUI library for Python, TkInter, discussing how to create and work with graphical user interfaces. The various components of TkInter are used to create forms for inputting and displaying user information.

Next page
Light

Font size:

Reset

Interval:

Bookmark:

Make

Similar books «Python Power!: The Comprehensive Guide»

Look at similar books to Python Power!: The Comprehensive Guide. 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 «Python Power!: The Comprehensive Guide»

Discussion, reviews of the book Python Power!: The Comprehensive Guide 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.