Home > Computing and Information Technology > Information technology: general topics > Internet: general works > Python in 24 Hours, Sams Teach Yourself: (Sams Teach Yourself)
21%
Python in 24 Hours, Sams Teach Yourself: (Sams Teach Yourself)

Python in 24 Hours, Sams Teach Yourself: (Sams Teach Yourself)

          
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

In just 24 sessions of one hour or less, Sams Teach Yourself Python in 24 Hours will help you get started fast, master all the core concepts of programming, and build anything from websites to games. Using this book’s straightforward, step-by-step approach, you’ll move from the absolute basics through functions, objects, classes, modules, database integration, and more. Every lesson and case study application builds on what you’ve already learned, giving you a rock-solid foundation for real-world success!   Step-by-step instructions carefully walk you through the most common Python development tasks.   Quizzes and Exercises at the end of each chapter help you test your knowledge.   Notes present interesting information related to the discussion.   Tips offer advice or show you easier ways to perform tasks.   Warnings alert you to possible problems and give you advice on how to avoid them.   Learn how to… Install and run the right version of Python for your operating system Store, manipulate, reformat, combine, and organize information Create logic to control how programs run and what they do Interact with users or other programs, wherever they are Save time and improve reliability by creating reusable functions Master Python data types: numbers, text, lists, and dictionaries Write object-oriented programs that work better and are easier to improve Expand Python classes to make them even more powerful Use third-party modules to perform complex tasks without writing new code Split programs to make them more maintainable and reusable Clearly document your code so others can work with it Store data in SQLite databases, write queries, and share data via JSON Simplify Python web development with the Flask framework Quickly program Python games with PyGame Avoid, troubleshoot, and fix problems with your code    

Table of Contents:
Preface    xiv Who This Book Is For    xiv How This Book Is Organized    xiv Introduction    1 Learning to Program    1 Why Python?    2 Getting Started    2 How This Book Works    3 What to Do If You Get Stuck    3 HOUR 1  Installing and Running Python 5 Discovering Your Operating System    5 Setting Up Python on Windows    7 Setting Up Python on a Mac    11 Summary    15 Q&A    15 Workshop    16 HOUR 2  Putting Numbers to Work in Python    17 Storing Information with Variables    17 Doing Math in Python    20 Comparing Numbers    23 Applying Python Math in the Real World    24 Summary    25 Q&A    26 Workshop    26 HOUR 3  Logic in Programming    27 Using a Basic if Statement    27 Creating Blocks    28 Adding an else to an if    29 Testing Many Things with elif    30 True and False Variables.    31 Using try/except to Avoid Errors    32 Applying Logic to Real-World Problems    34 Summary    35 Q&A    35 Workshop    36 HOUR 4  Storing Text in Strings    37 Creating Strings    37 Printing Strings    38 Getting Information About a String    38 Math and Comparison    40 Formatting Strings.    42 Using Strings in the Real World    46 Summary    47 Q&A    47 Workshop    48 HOUR 5  Processing Input and Output    49 Getting Information from the Command Line    49 Getting a Password    53 Cleaning Up User Input    54 Formatting Output    55 Managing Input and Output in the Real World    57 Summary    58 Q&A    58 Workshop    58 HOUR 6  Grouping Items in Lists    61 Creating a List    61 Getting Information About a List    63 Manipulating Lists    64 Using Math in Lists    65 Ordering Lists    66 Comparing Lists    67 Using Lists in the Real World    67 Summary    68 Q&A    68 Workshop    69 HOUR 7  Using Loops to Repeat Code    71 Repeating a Set Number of Times    71 Repeating Only When True    76 Using Loops in the Real World    77 Summary    79 Q&A    79 Workshop    80 HOUR 8  Using Functions to Create Reusable Code    81 Creating a Basic Function    81 Passing Values to Functions    82 Variables in Functions: Scope    86 Grouping Functions Within a Function    88 Sending a Varying Number of Parameters    88 Using Functions in the Real World    89 Summary    92 Q&A    92 Workshop    93 HOUR 9  Using Dictionaries to Pair Keys with Values    95 Creating a Dictionary    95 Getting Information About a Dictionary    97 Comparing Dictionaries.    98 Using Dictionaries in the Real World    99 Summary    101 Q&A    101 Workshop    101 HOUR 10  Making Objects    103 Object-Oriented Programming    103 Planning an Object    107 Making Objects Out of Objects    108 Using Objects in the Real World    110 Summary    111 Q&A    111 Workshop    111 HOUR 11  Making Classes    113 Making a Basic Class Statement    113 Adding Methods to Classes    114 Setting Up Class Instances    116 Using Classes in the Real World    119 Summary    122 Q&A    122 Workshop    122 HOUR 12  Expanding Classes to Add Functionality    125 Built-in Extras    125 Class Inheritance    130 When to Expand Classes in the Real World    134 Summary    136 Q&A    136 Workshop    137 HOUR 13  Using Python’s Modules to Add Functionality    139 Python Packages    139 Using the random Module    140 Using the datetime Module    143 Finding More Modules    145 Using Modules in the Real World    146 Summary    147 Q&A    147 Workshop    148 HOUR 14  Splitting Up a Program    149 Why Split Up a Program?    149 Deciding How to Break Up Code    150 How Python Finds a Program’s Code    152 Splitting Up Code in the Real World    155 Summary    157 Q&A    157 Workshop    158 HOUR 15  Providing Documentation for Code    159 The Need for Good Documentation    159 Embedding Comments in Code    160 Explaining Code with Docstrings    162 Including README and INSTALL    164 Providing Documentation in the Real World    167 Summary    168 Q&A    168 Workshop    169 HOUR 16  Working with Program Files    171 Reading to and Writing from Files    171 Creating Files    174 Getting Information About a Directory    175 Getting Information About a File    178 Using Files in the Real World    180 Summary    181 Q&A    181 Workshop    181 HOUR 17  Sharing Information with JSON    183 The JSON Format    183 Working with JSON Files    185 Saving Objects as JSON    188 Creating Custom Dictionaries    189 Using JSON in the Real World    191 Summary    194 Q&A    194 Workshop    195 HOUR 18  Storing Information in Databases    197 Why Use Databases?    197 Talking to Databases with SQL.    198 Creating a Database    200 Querying the Database    203 Using Databases in the Real World    205 Summary    207 Q&A    207 Workshop    208 HOUR 19  Using SQL to Get More out of Databases    209 Filtering with WHERE    210 Sorting with ORDER BY    214 Getting Unique Items with DISTINCT    215 Updating Records with UPDATE    215 Deleting Records with DELETE    216 Using SQL in the Real World    217 Summary    220 Q&A    220 Workshop    221 HOUR 20  Developing for the Web with Flask    223 What Is Flask?    223 Installing Flask    225 Making Your First Flask App    228 Adding Templates    231 Using Frameworks in the Real World    237 Summary    238 Q&A    238 Workshop    239 HOUR 21  Making Games with PyGame    241 What Is PyGame?    241 Installing PyGame    242 Creating Screens    243 Creating Shapes    245 Moving Things Around on the Screen    248 Getting Input from the User    250 Drawing Text.    252 Using PyGame in the Real World    253 Summary    257 Q&A    257 Workshop    258 HOUR 22  Saving Your Code Properly Through Versioning    259 What Is Versioning?    259 Versioning with Git and GitHub    261 Managing Code in a Repository    263 Experimental Changes with Branches    267 Determining What Not to Push    270 Summary    271 Q&A    271 Workshop    271 HOUR 23  Fixing Problem Code    273 When Your Code Has a Bug    273 Locating Errors with a Traceback    274 Finding Errors with the pdb Debugger    275 Searching the Internet for Solutions    278 Trying a Fix    279 Finding Outside Support    280 Summary    282 Q&A    282 Workshop    283 HOUR 24  Taking the Next Steps with Python    285 Interesting Projects    285 Attending Conferences    288 Working with Linux    288 Contributing to Python    290 Contributing to Other Projects    290 Learning Another Language    290 Looking Forward to Python 3    291 Recommended Reading    292 Recommended Websites.    292 Summary    293 Q&A    293 Workshop    293 Index    295    


Best Sellers


Product Details
  • ISBN-13: 9780133354454
  • Publisher: Pearson Education (US)
  • Publisher Imprint: Addison Wesley
  • Language: English
  • Series Title: Sams Teach Yourself
  • ISBN-10: 0133354458
  • Publisher Date: 10 Sep 2013
  • Binding: Digital download
  • No of Pages: 321
  • Weight: 1 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 in 24 Hours, Sams Teach Yourself: (Sams Teach Yourself)
Pearson Education (US) -
Python in 24 Hours, Sams Teach Yourself: (Sams Teach Yourself)
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 in 24 Hours, Sams Teach Yourself: (Sams Teach Yourself)

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