Home > Computing and Information Technology > Computer programming / software engineering > Programming and scripting languages: general > Learn Python 3 the Hard Way: A Very Simple Introduction to the Terrifyingly Beautiful World of Computers and Code(Zed Shaw's Hard Way Series)
20%
Learn Python 3 the Hard Way: A Very Simple Introduction to the Terrifyingly Beautiful World of Computers and Code(Zed Shaw's Hard Way Series)

Learn Python 3 the Hard Way: A Very Simple Introduction to the Terrifyingly Beautiful World of Computers and Code(Zed Shaw's Hard Way Series)

3.6       |  7 Reviews 
5
4
3
2
1

Available


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.
Quantity:
Add to Wishlist

About the Book

You Will Learn Python 3! Zed Shaw has perfected the world’s best system for learning Python 3. Follow it and you will succeed—just like the millions of beginners Zed has taught to date! You bring the discipline, commitment, and persistence; the author supplies everything else. In Learn Python 3 the Hard Way, you’ll learn Python by working through 52 brilliantly crafted exercises. Read them. Type their code precisely. (No copying and pasting!) Fix your mistakes. Watch the programs run. As you do, you’ll learn how a computer works; what good programs look like; and how to read, write, and think about code. Zed then teaches you even more in 5+ hours of video where he shows you how to break, fix, and debug your code—live, as he’s doing the exercises. Install a complete Python environment Organize and write code Fix and break code Basic mathematics Variables Strings and text Interact with users Work with files Looping and logic Data structures using lists and dictionaries Program design Object-oriented programming Inheritance and composition Modules, classes, and objects Python packaging Automated testing Basic game development Basic web development It’ll be hard at first. But soon, you’ll just get it—and that will feel great! This course will reward you for every minute you put into it. Soon, you’ll know one of the world’s most powerful, popular programming languages. You’ll be a Python programmer. This Book Is Perfect For Total beginners with zero programming experience Junior developers who know one or two languages Returning professionals who haven’t written code in years Seasoned professionals looking for a fast, simple, crash course in Python 3

Table of Contents:
Preface xvii Acknowledgments xx Exercise 0: The Setup 2 macOS 2 Windows 3 Linux 4 Finding Things on the Internet 5 Warnings for Beginners 6 Alternative Text Editors 6 Exercise 1: A Good First Program 8 What You Should See 10 Study Drills 12 Common Student Questions 12 Exercise 2: Comments and Pound Characters 14 What You Should See 14 Study Drills 14 Common Student Questions 15 Exercise 3: Numbers and Math 16 What You Should See 17 Study Drills 17 Common Student Questions 17 Exercise 4: Variables and Names 20 What You Should See 21 Study Drills 21 Common Student Questions 21 Exercise 5: More Variables and Printing 24 What You Should See 24 Study Drills 25 Common Student Questions 25 Exercise 6: Strings and Text 26 What You Should See 27 Study Drills 27 Break It 27 Common Student Questions 27 Exercise 7: More Printing 28 What You Should See 28 Study Drills 29 Break It 29 Common Student Questions 29 Exercise 8: Printing, Printing 30 What You Should See 30 Study Drills 31 Common Student Questions 31 Exercise 9: Printing, Printing, Printing 32 What You Should See 32 Study Drills 33 Common Student Questions 33 Exercise 10: What Was That? 34 What You Should See 35 Escape Sequences 35 Study Drills 36 Common Student Questions 36 Exercise 11: Asking Questions 38 What You Should See 38 Study Drills 39 Common Student Questions 39 Exercise 12: Prompting People 40 What You Should See 40 Study Drills 40 Common Student Questions 41 Exercise 13: Parameters, Unpacking, Variables 42 Hold Up! Features Have Another Name 42 What You Should See 43 Study Drills 44 Common Student Questions 44 Exercise 14: Prompting and Passing 46 What You Should See 46 Study Drills 47 Common Student Questions 47 Exercise 15: Reading Files 48 What You Should See 49 Study Drills 49 Common Student Questions 50 Exercise 16: Reading and Writing Files 52 What You Should See 53 Study Drills 53 Common Student Questions 54 Exercise 17: More Files 56 What You Should See 56 Study Drills 57 Common Student Questions 57 Exercise 18: Names, Variables, Code, Functions 60 What You Should See 61 Study Drills 62 Common Student Questions 62 Exercise 19: Functions and Variables 64 What You Should See 65 Study Drills 65 Common Student Questions 65 Exercise 20: Functions and Files 68 What You Should See 69 Study Drills 69 Common Student Questions 69 Exercise 21: Functions Can Return Something 72 What You Should See 73 Study Drills 73 Common Student Questions 74 Exercise 22: What Do You Know So Far? 76 What You Are Learning 76 Exercise 23: Strings, Bytes, and Character Encodings 78 Initial Research 78 Switches, Conventions, and Encodings 80 Disecting the Output 82 Disecting the Code 82 Encodings Deep Dive 84 Breaking It 85 Exercise 24: More Practice 86 What You Should See 87 Study Drills 87 Common Student Questions 87 Exercise 25: Even More Practice 90 What You Should See 91 Study Drills 92 Common Student Questions 93 Exercise 26: Congratulations, Take a Test! 94 Common Student Questions 94 Exercise 27: Memorizing Logic 96 The Truth Terms 96 The Truth Tables 97 Common Student Questions 98 Exercise 28: Boolean Practice 100 What You Should See 102 Study Drills 102 Common Student Questions 102 Exercise 29: What If 104 What You Should See 104 Study Drills 105 Common Student Questions 105 Exercise 30: Else and If 106 What You Should See 107 Study Drills 107 Common Student Questions 107 Exercise 31: Making Decisions 108 What You Should See 109 Study Drills 109 Common Student Questions 109 Exercise 32: Loops and Lists 112 What You Should See 113 Study Drills 114 Common Student Questions 114 Exercise 33: While Loops 116 What You Should See 117 Study Drills 117 Common Student Questions 118 Exercise 34: Accessing Elements of Lists 120 Study Drills 121 Exercise 35: Branches and Functions 122 What You Should See 123 Study Drills 124 Common Student Questions 124 Exercise 36: Designing and Debugging 126 Rules for if-statements 126 Rules for Loops 126 Tips for Debugging 127 Homework 127 Exercise 37: Symbol Review 128 Keywords 128 Data Types 129 String Escape Sequences 130 Old Style String Formats 130 Operators 131 Reading Code 132 Study Drills 133 Common Student Questions 133 Exercise 38: Doing Things to Lists 134 What You Should See 135 What Lists Can Do 136 When to Use Lists 137 Study Drills 137 Common Student Questions 138 Exercise 39: Dictionaries, Oh Lovely Dictionaries 140 A Dictionary Example 141 What You Should See 142 What Dictionaries Can Do 143 Study Drills 144 Common Student Questions 144 Exercise 40: Modules, Classes, and Objects 146 Modules Are Like Dictionaries 146 What You Should See 150 Study Drills 150 Common Student Questions 151 Exercise 41: Learning to Speak Object-Oriented 152 Word Drills 152 Phrase Drills 152 Combined Drills 153 A Reading Test 153 Practice English to Code 155 Reading More Code 156 Common Student Questions 156 Exercise 42: Is-A, Has-A, Objects, and Classes 158 How This Looks in Code 159 About class Name(object) 161 Study Drills 161 Common Student Questions 161 Exercise 43: Basic Object-Oriented Analysis and Design 164 The Analysis of a Simple Game Engine 165 Top Down versus Bottom Up 169 The Code for “Gothons from Planet Percal #25” 170 What You Should See 176 Study Drills 176 Common Student Questions 177 Exercise 44: Inheritance versus Composition 178 What Is Inheritance? 178 The Reason for super() 183 Composition 184 When to Use Inheritance or Composition 185 Study Drills 185 Common Student Questions 186 Exercise 45: You Make a Game 188 Evaluating Your Game 188 Function Style 189 Class Style 189 Code Style 190 Good Comments 190 Evaluate Your Game 190 Exercise 46: A Project Skeleton 192 macOS/Linux Setup 192 Windows 10 Setup 194 Creating the Skeleton Project Directory 195 Testing Your Setup 197 Using the Skeleton 198 Required Quiz 198 Common Student Questions 198 Exercise 47: Automated Testing 200 Writing a Test Case 200 Testing Guidelines 202 What You Should See 202 Study Drills 203 Common Student Questions 203 Exercise 48: Advanced User Input 204 Our Game Lexicon 204 A Test First Challenge 206 What You Should Test 207 Study Drills 209 Common Student Questions 209 Exercise 49: Making Sentences 210 Match and Peek 210 The Sentence Grammar 211 A Word on Exceptions 211 The Parser Code 211 Playing with the Parser 214 What You Should Test 215 Study Drills 215 Common Student Questions 215 Exercise 50: Your First Website 216 Installing flask 216 Make a Simple “Hello World” Project 216 What’s Going On? 218 Fixing Errors 218 Create Basic Templates 219 Study Drills 221 Common Student Questions 221 Exercise 51: Getting Input from a Browser 224 How the Web Works 224 How Forms Work 226 Creating HTML Forms 227 Creating a Layout Template 229 Writing Automated Tests for Forms 230 Study Drills 232 Breaking It 232 Exercise 52: The Start of Your Web Game 234 Refactoring the Exercise 43 Game 234 Creating an Engine 239 Your Final Exam 241 Common Student Questions 242 Next Steps 244 How to Learn Any Programming Language 245 Advice from an Old Programmer 246 Appendix Command Line Crash Course 248 Introduction: Shut Up and Shell 248 The Setup 249 Paths, Folders, Directories (pwd) 253 If You Get Lost 255 Make a Directory (mkdir) 255 Change Directory (cd) 258 List Directory (ls) 261 Remove Directory (rmdir) 265 Moving Around (pushd, popd) 268 Making Empty Files (touch/New-Item) 271 Copy a File (cp) 272 Moving a File (mv) 275 View a File (less/more) 277 Stream a File (cat) 278 Removing a File (rm) 280 Exiting Your Terminal (exit) 282 Command Line Next Steps 283 Index 284


Best Sellers


Product Details
  • ISBN-13: 9780134692883
  • Publisher: Pearson Education (US)
  • Publisher Imprint: Addison Wesley
  • Height: 229 mm
  • No of Pages: 320
  • Series Title: Zed Shaw's Hard Way Series
  • Sub Title: A Very Simple Introduction to the Terrifyingly Beautiful World of Computers and Code
  • Width: 175 mm
  • ISBN-10: 0134692888
  • Publisher Date: 25 Jul 2017
  • Binding: Paperback
  • Language: English
  • Returnable: Y
  • Spine Width: 18 mm
  • Weight: 520 gr


Similar Products

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

Add Photo
Add Photo

Customer Reviews

3.6       |  7 Reviews 
out of (%) reviewers recommend this product
Top Reviews
Rating Snapshot
Select a row below to filter reviews.
5
4
3
2
1
Average Customer Ratings
3.6       |  7 Reviews 
00 of 0 Reviews
Sort by :
Active Filters

00 of 0 Reviews
SEARCH RESULTS
1–2 of 2 Reviews
    BoxerLover2 - 5 Days ago
    A Thrilling But Totally Believable Murder Mystery

    Read this in one evening. I had planned to do other things with my day, but it was impossible to put down. Every time I tried, I was drawn back to it in less than 5 minutes. I sobbed my eyes out the entire last 100 pages. Highly recommend!

    BoxerLover2 - 5 Days ago
    A Thrilling But Totally Believable Murder Mystery

    Read this in one evening. I had planned to do other things with my day, but it was impossible to put down. Every time I tried, I was drawn back to it in less than 5 minutes. I sobbed my eyes out the entire last 100 pages. Highly recommend!


Sample text
Photo of
    Media Viewer

    Sample text
    Reviews
    Reader Type:
    BoxerLover2
    00 of 0 review

    Your review was submitted!
    Learn Python 3 the Hard Way: A Very Simple Introduction to the Terrifyingly Beautiful World of Computers and Code(Zed Shaw's Hard Way Series)
    Pearson Education (US) -
    Learn Python 3 the Hard Way: A Very Simple Introduction to the Terrifyingly Beautiful World of Computers and Code(Zed Shaw's Hard Way Series)
    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.

    Learn Python 3 the Hard Way: A Very Simple Introduction to the Terrifyingly Beautiful World of Computers and Code(Zed Shaw's Hard Way Series)

    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