7%
Python: Visual QuickStart Guide(Visual QuickStart Guide)

Python: Visual QuickStart Guide(Visual QuickStart Guide)

          
5
4
3
2
1

Out of Stock


Premium quality
Premium quality
Bookswagon upholds the quality by delivering untarnished books. Quality, services and satisfaction are everything for us!
Easy Return
Easy return
Not satisfied with this product! Keep it in original condition and packaging to avail easy return policy.
Certified product
Certified product
First impression is the last impression! Address the book’s certification page, ISBN, publisher’s name, copyright page and print quality.
Secure Checkout
Secure checkout
Security at its finest! Login, browse, purchase and pay, every step is safe and secured.
Money back guarantee
Money-back guarantee:
It’s all about customers! For any kind of bad experience with the product, get your actual amount back after returning the product.
On time delivery
On-time delivery
At your doorstep on time! Get this book delivered without any delay.
Notify me when this book is in stock
Add to Wishlist

About the Book

Named after the Monty Python comedy troupe, Python is an interpreted, open-source, object-oriented programming language. It's also free and runs portably on Windows, Mac OS, Unix, and other operating systems. Python can be used for all manner of programming tasks, from CGI scripts to full-fledged applications. It is gaining popularity among programmers in part because it is easier to read (and hence, debug) than most other programming languages, and it's generally simpler to install, learn, and use. Its line structure forces consistent indentation. Its syntax and semantics make it suitable for simple scripts and large programs. Its flexible data structures and dynamic typing allow you to get a lot done in a few lines. To learn it, you'll need is some basic programming experience and a copy of Python: Visual QuickStart Guide. In patented Visual QuickStart Guide fashion, the book doesn't just tell you how to use Python to develop applications, it shows you, breaking Python into easy-to-digest, step-by-step tasks and providing example code. Python: Visual QuickStart Guide emphasizes the core language and libraries, which are the building blocks for programs. Author Chris Fehily starts with the basics - expressions, statements, numbers, strings - then moves on to lists, dictionaries, functions, and modules before wrapping things up with straightforward discussions of exceptions and classes. Some additional topics covered include:- Object-oriented programming- Working in multiple operating systems- Structuring large programs- Comparing Python to C, Perl, and Java- Handling errors gracefully.

Table of Contents:
1. Getting Started. Getting Python. Reading Python Documentation. Opening a Command-Prompt Window. Setting Your Path. Using Python Environment Variables. Running Programs in Interactive Mode. Running Programs in Script Mode. Using IDLE. Specifying Command-Line Options. Passing Arguments to a Script. 2. Expressions and Statements. Documenting Programs. Naming Variables. Creating Expressions. Creating Expression Statements. Creating Variables. Deleting Variables. Printing Objects. Determining an Object's Identity. Creating References to the Same Object. Determining an Object's Type. Using Boolean Operators. Using Comparison Operators. Chaining Comparisons. Determining the Order of Evaluation. Summarizing Objects. 3. Working with Numbers. Understanding the Types of Numbers. Understanding Promotion. Performing Basic Arithmetic. Raising a Number to a Power. Getting the Remainder of a Division. Getting the Quotient of a Division. Controlling Calculation Order. Making Augmented Assignments. Converting Among Number Types. Comparing Numbers. Using Mathematical Functions. Using Advanced Mathematical Functions. Generating Random Numbers. 4. Working with Strings. Creating a String. Inserting Special Characters into a String. Creating a Unicode String. Finding the Length of a String. Indexing a String (Extracting a Character). Slicing a String (Extracting a Substring). Concatenating Strings. Repeating a String. Using String Methods and Functions. Changing String Case. Testing a String. Trimming and Justifying a String. Searching for Substrings. Replacing Substrings. Translating a String. Splitting and Joining Strings. Performing List Operations on a String. Converting a String. Comparing Strings. Printing Formatted Strings. 5. Working with Lists and Tuples. Creating a List or Tuple. Finding the Length of a List or Tuple. Indexing a List or Tuple (Extracting an Item). Slicing a List or Tuple (Extracting a Segment). Copying a List or Tuple. Concatenating Lists or Tuples. Repeating a List or Tuple. Converting a List or Tuple. Comparing Lists or Tuples. Testing List or Tuple Membership. Modifying a List. Replacing List Items. Counting Matching List Values. Searching a List. Adding List Items. Removing List Items. Sorting a List. Inserting Items into a Sorted List. Defining a Custom List Sort Order. Reversing a List. 6. Working with Dictionaries. Using Dictionary Operators and Methods. Creating a Dictionary. Printing a Dictionary. Getting a Value by Using a Key. Getting All of a Dictionary's Values. Getting All of a Dictionary's Keys. Getting All of a Dictionary's Key-Value Pairs. Determining Whether a Key Exists. Counting a Dictionary's Key-Value Pairs. Adding or Replacing a Key-Value Pair. Removing a Key-Value Pair. Removing a Random Key-Value Pair. Clearing or Deleting a Dictionary. Combining Dictionaries. Copying a Dictionary. Converting a Dictionary 2. Comparing Dictionaries. Sorting a Dictionary. Storing Computed Values in a Dictionary. 7. Control Flow Statements. Splitting Statements Across Lines. Creating Compound Statements. Using pass to Create a Null Statement. Indenting Blocks of Statements. Putting Multiple Statements on a Line. Using if Conditionals. Using if-else Conditionals. Using if-elif-else Conditionals. Using while Loops. Using while-else Loops. Using for Loops. Using for-else Loops. Looping over a Range of Integers. Skipping Part of a Loop Iteration. Exiting a Loop. 8. Functions. Defining a Function. Documenting a Function. Calling a Function. Returning a Value from a Function. Returning Multiple Values from a Function. Specifying Positional Arguments. Specifying Default Parameter Values. Specifying Keyword Arguments. Specifying an Arbitrary Number of Positional Arguments. Specifying an Arbitrary Number of Keyword Arguments. Combining Argument-Passing Techniques. Creating Recursive Functions. Passing Mutable and Immutable Arguments to Functions. Declaring Global Variables. Assigning a Function to a Variable. Using Functional Programming Tools. Using lambda Expressions to Create Functions. Using apply to Call a Function. Using map to Apply a Function to Sequence Items. Using zip to Group Sequence Items. Using filter to Remove Sequence Items Conditionally. Using reduce to Reduce a Sequence. Using List Comprehensions to Create Lists. 9. Modules. Structuring a Module. Creating a Module. Documenting a Module. Loading a Module with import. Accessing Attributes. Listing an Object's Attributes. Manipulating Attributes. Loading Specific Module Names with from. Loading a Module Under a Different Name with as. Enabling Language Features. Reloading a Module with reload. Specifying the Module Search Path. Determining Whether a Module Is Running As a Program. Determining Which Modules Are Loaded. Understanding Namespaces. Accessing Namespaces. Understanding Scoping Rules. Nesting Functions. Grouping Modules into Packages. Terminating a Program Explicitly. Running Code Programmatically. 10. Files. Opening a File. Reading from a File. Writing to a File. Closing a File. Changing Position in a File. Truncating a File. Getting File Object Information. Printing to a File. Accessing Standard Input and Output Files. Prompting for User Input. Using the File System. Accessing Environment Variables. Changing the Working Directory. Listing Directory Contents. Creating a Directory. Removing a Directory. Renaming a File or Directory. Removing a File. Getting Path Information. Getting File Information. Splitting Paths. Joining Paths. Saving Objects As Files. 11. Exceptions. Understanding the Exception Hierarchy. Handling an Exception. Ignoring an Exception. Getting an Exception's Argument. Handling All Exceptions. Running Code in the Absence of an Exception. Handling Multiple Exceptions. Running Mandatory Cleanup Code. Raising an Exception Explicitly. Creating User-Defined Exceptions. Making an Assertion. 12. Classes. Understanding OOP Terminology. Defining a Class. Documenting a Class. Accessing Built-In Class Attributes. Creating an Instance. Accessing Built-In Instance Attributes. Creating Class Variables. Using Special Methods to Overload Standard Behavior. Creating Instance Variables with an Initialization Method. Destroying an Instance. Creating a String Representation of an Instance. Setting the Truth Value of an Instance. Comparing Instances. Accessing Instance Attributes. Treating an Instance Like a List or Dictionary. Performing Mathematical Operations on Instances. Calling an Instance. Defining and Invoking a Custom Method. Deriving New Classes from Existing Classes. Hiding Private Data. Determining Class Membership. Appendix. Learning Python. Getting Support. Editing and Debugging Code. Programming Resources. Index.


Best Sellers


Product Details
  • ISBN-13: 9780201748840
  • Publisher: Pearson Education (US)
  • Publisher Imprint: Peachpit Press Publications
  • Height: 179 mm
  • No of Pages: 440
  • Series Title: Visual QuickStart Guide
  • Sub Title: Visual QuickStart Guide
  • Width: 230 mm
  • ISBN-10: 0201748843
  • Publisher Date: 07 Nov 2001
  • Binding: Paperback
  • Language: English
  • Returnable: N
  • Spine Width: 229 mm
  • Weight: 690 gr


Similar Products

How would you rate your experience shopping for books on Bookswagon?

Add Photo
Add Photo

Customer Reviews

REVIEWS           
Click Here To Be The First to Review this Product
Python: Visual QuickStart Guide(Visual QuickStart Guide)
Pearson Education (US) -
Python: Visual QuickStart Guide(Visual QuickStart Guide)
Writing guidlines
We want to publish your review, so please:
  • keep your review on the product. Review's that defame author's character will be rejected.
  • Keep your review focused on the product.
  • Avoid writing about customer service. contact us instead if you have issue requiring immediate attention.
  • Refrain from mentioning competitors or the specific price you paid for the product.
  • Do not include any personally identifiable information, such as full names.

Python: Visual QuickStart Guide(Visual QuickStart Guide)

Required fields are marked with *

Review Title*
Review
    Add Photo Add up to 6 photos
    Would you recommend this product to a friend?
    Tag this Book
    Read more
    Does your review contain spoilers?
    What type of reader best describes you?
    I agree to the terms & conditions
    You may receive emails regarding this submission. Any emails will include the ability to opt-out of future communications.

    CUSTOMER RATINGS AND REVIEWS AND QUESTIONS AND ANSWERS TERMS OF USE

    These Terms of Use govern your conduct associated with the Customer Ratings and Reviews and/or Questions and Answers service offered by Bookswagon (the "CRR Service").


    By submitting any content to Bookswagon, you guarantee that:
    • You are the sole author and owner of the intellectual property rights in the content;
    • All "moral rights" that you may have in such content have been voluntarily waived by you;
    • All content that you post is accurate;
    • You are at least 13 years old;
    • Use of the content you supply does not violate these Terms of Use and will not cause injury to any person or entity.
    You further agree that you may not submit any content:
    • That is known by you to be false, inaccurate or misleading;
    • That infringes any third party's copyright, patent, trademark, trade secret or other proprietary rights or rights of publicity or privacy;
    • That violates any law, statute, ordinance or regulation (including, but not limited to, those governing, consumer protection, unfair competition, anti-discrimination or false advertising);
    • That is, or may reasonably be considered to be, defamatory, libelous, hateful, racially or religiously biased or offensive, unlawfully threatening or unlawfully harassing to any individual, partnership or corporation;
    • For which you were compensated or granted any consideration by any unapproved third party;
    • That includes any information that references other websites, addresses, email addresses, contact information or phone numbers;
    • That contains any computer viruses, worms or other potentially damaging computer programs or files.
    You agree to indemnify and hold Bookswagon (and its officers, directors, agents, subsidiaries, joint ventures, employees and third-party service providers, including but not limited to Bazaarvoice, Inc.), harmless from all claims, demands, and damages (actual and consequential) of every kind and nature, known and unknown including reasonable attorneys' fees, arising out of a breach of your representations and warranties set forth above, or your violation of any law or the rights of a third party.


    For any content that you submit, you grant Bookswagon a perpetual, irrevocable, royalty-free, transferable right and license to use, copy, modify, delete in its entirety, adapt, publish, translate, create derivative works from and/or sell, transfer, and/or distribute such content and/or incorporate such content into any form, medium or technology throughout the world without compensation to you. Additionally,  Bookswagon may transfer or share any personal information that you submit with its third-party service providers, including but not limited to Bazaarvoice, Inc. in accordance with  Privacy Policy


    All content that you submit may be used at Bookswagon's sole discretion. Bookswagon reserves the right to change, condense, withhold publication, remove or delete any content on Bookswagon's website that Bookswagon deems, in its sole discretion, to violate the content guidelines or any other provision of these Terms of Use.  Bookswagon does not guarantee that you will have any recourse through Bookswagon to edit or delete any content you have submitted. Ratings and written comments are generally posted within two to four business days. However, Bookswagon reserves the right to remove or to refuse to post any submission to the extent authorized by law. You acknowledge that you, not Bookswagon, are responsible for the contents of your submission. None of the content that you submit shall be subject to any obligation of confidence on the part of Bookswagon, its agents, subsidiaries, affiliates, partners or third party service providers (including but not limited to Bazaarvoice, Inc.)and their respective directors, officers and employees.

    Accept

    New Arrivals


    Inspired by your browsing history


    Your review has been submitted!

    You've already reviewed this product!
    ASK VIDYA