Oreilly - Python Programming for Beginners - Learn in 100 Easy Steps - 9781838556563
Oreilly - Python Programming for Beginners - Learn in 100 Easy Steps
by Ranga Karanam | Released January 2019 | ISBN: 9781838556563


Learn Python Programming using a Step By Step Approach with 200+ code examples.About This VideoThe course is amazing, the instructor has good knowledge in the fieldThis course can be viewed with zero Python Programming ExperienceIn DetailPython is one of the most popular programming languages. Python offers both object-oriented and structural programming features. We love Programming. Our aim with this course is to create a love for Programming.In more than 150 Steps, we explore the most important Python Programming Language FeaturesBasics of Python Programming - Expressions, Variables, and Printing OutputPython Operators - Python Assignment Operator, Relational and Logical Operators, Short Circuit OperatorsPython Conditionals and If StatementMethods - Parameters, Arguments and Return ValuesAn Overview Of Python PlatformObject-Oriented Programming - Class, Object, State and BehaviorBasics of OOPS - Encapsulation, Inheritance and Abstract Class.Basics about Python Data TypesBasics about Python Built-in ModulesConditionals with Python - If Else Statement, Nested If ElseLoops - For Loop, While Loop in Python, Break and ContinueImmutablity of Python Basic TypesPython Data Structures - List, Set, Dictionary and TuplesIntroduction to Variable ArgumentsBasics of Designing a Class - Class, Object, State and Behavior. Deciding State and Constructors.Introduction to Exception Handling - Your Thought Process during Exception Handling. try, except, else and finally. Exception Hierarchy. Throwing an Exception. Creating and Throwing a Custom Exception.All the code and supporting files for this course are available at: https://github.com/PacktPublishing/Python-Programming-for-Beginners---Learn-in-100-Easy-StepsDownloading the example code for this course: You can download the example code files for all Packt video courses you have purchased from your account at http://www.PacktPub.com. If you purchased this course elsewhere, you can visit http://www.PacktPub.com/support and register to have the files e-mailed directly to you. Show and hide more
  1. Chapter 1 : Introduction
    • Introduction 00:02:23
    • How to Make Best use of the Course Guide? 00:01:15
    • Installing Python and Launching Python Shell 00:03:50
  2. Chapter 2 : Introduction to Python Programming With Multiplication Table
    • Step 01 - Getting Started with Programming 00:02:11
    • Step 02 - Introduction to Multiplication Table challenge 00:01:15
    • Step 03 - Break down Multiplication Table Challenge 00:01:56
    • Step 04 - Python Expression - An Introduction 00:05:40
    • Step 05 - Python Expression – Exercises 00:01:38
    • Step 06 - Python Expression – Puzzles 00:05:35
    • Step 07 - Printing output to console with Python 00:04:54
    • Step 08 - Calling Functions in Python – Puzzles 00:10:12
    • Step 09 - Advanced Printing output to console with Python 00:05:18
    • Step 10 - Advanced Printing output to console with Python - Exercises and Puzzle 00:04:28
    • Step 11 - Introduction to Variables in Python 00:07:56
    • Step 12 - Introduction to Variables in Python – Puzzles 00:05:10
    • Step 13 - Assignment Statement 00:07:43
    • Step 14 - Tip - Using formatted strings in print method 00:03:07
    • Step 15 - Using For Loop to Print Multiplication Table 00:08:02
    • Step 16 - Using For Loop in Python – Puzzles 00:06:02
    • Step 17 - Using For Loop in Python – Exercises 00:05:05
    • Step 18 - Getting Started with Programming - Revise all Terminology 00:03:36
  3. Chapter 3 : Introduction to Methods - Multiplication Table
    • Step 00 - Section 02 - Methods - An Introduction 00:01:53
    • Step 01 - Your First Python Method - Hello World Twice and Exercise Statements 00:04:39
    • Step 02 - Introduction to Python Methods – Exercises 00:03:39
    • Step 03 - Introduction to Python Methods - Arguments and Parameters 00:09:44
    • Step 04 - Introduction to Python Method Parameters – Exercises 00:04:21
    • Step 05 - Introduction to Python Method - Multiple Parameters 00:04:57
    • Step 06 - Getting back to Multiplication Table - Creating a method 00:04:25
    • Step 07 - Tip - Indentation is king 00:03:57
    • Step 08 - Introduction to Python Method - Puzzles - Named Parameters 00:08:51
    • Step 09 - Introduction to Python Method - Return Values 00:04:31
    • Step 10 - Introduction to Python Method - Return Values – Exercises 00:04:32
  4. Chapter 4 : Introduction to Python Platform
    • Step 01 - Writing and Executing your First Python Script 00:07:14
    • Step 02 - Python Virtual Machine and bytecode 00:03:53
  5. Chapter 5 : Introduction to PyCharm
    • Step 01 - Installing and Introduction to PyCharm 00:01:42
    • Step 02 - Write and Execute a Python File with PyCharm 00:03:53
    • Step 03 - Execise - Write Multiplication Table Method with PyCharm 00:05:10
    • Step 04 - Debugging Code with PyCharm 00:09:00
    • Step 05 - PyCharm Tips: Tool Windows 00:03:08
    • Step 06 - PyCharm Tips: Keyboard Shortcuts 00:10:53
  6. Chapter 6 : Basic Numeric Data Types and Conditional Execution
    • Step 01 - Introduction to Numeric Data Types 00:05:56
    • Step 02 - Exercise - Calculate Simple Interest 00:04:50
    • Step 03 - Introduction to Numeric Data Types – Puzzles 00:05:38
    • Step 04 - Introduction to Boolean Data Type 00:03:20
    • Step 05 - Introduction to If Condition 00:04:38
    • Step 06 - Introduction to If Condition – Exercises 00:04:34
    • Step 07 - Logical Operators - and or not 00:03:15
    • Step 08 - Logical Operators - and or not – Puzzles 00:06:51
    • Step 09 - Introduction to If Condition - else and elif 00:06:17
    • Step 10 - if, else and elif - Menu Exercise - Part 1 00:08:26
    • Step 11 - if, else and elif - Menu Exercise - Part 2 00:05:03
    • Step 12 - if, else and elif – Puzzles 00:04:34
  7. Chapter 7 : Text in Python
    • Step 01 - Text in Python - Methods in str class 00:08:56
    • Step 02 - Data Type Conversion – Puzzles 00:04:38
    • Step 03 - Strings are immutable 00:06:15
    • Step 04 - There is no separate Character data type 00:03:27
    • Step 05 - String module 00:04:37
    • Step 06 - Exercise - is vowel, print lower case and upper case characters 00:07:06
    • Step 07 - String - Exercises and Puzzles 00:05:39
    • Step 08 - String – Conclusion 00:02:50
  8. Chapter 8 : Python Loops
    • Step 01 - For loop basics 00:02:21
    • Step 02 - For loop exercise 1 - is_prime 00:07:26
    • Step 03 - For loop exercise 2 - sum_upto_n 00:03:06
    • Step 04 - For loop exercise 3 - sum of divisors 00:03:28
    • Step 05 – For loop exercise 4 - print a number triangle 00:05:08
    • Step 06 - Introduction to while loop in Python 00:05:19
    • Step 07 - While loop – Exercises 00:05:53
    • Step 08 - Choosing a Loop - Menu Exercise 00:05:07
    • Step 09 - Loops - Puzzles - break and continue 00:09:41
  9. Chapter 9 : Python Tips for Beginners
    • Tip 1 - Using Predefined Python Modules 00:04:01
    • Tip 2 - Loop - Getting Index Element 00:02:52
    • Tip 3 - Short hand If Statement 00:02:25
    • Tip 4 - Python is Strongly Typed and Dynamic Language 00:03:55
    • Tip 4 - Beginners Mistakes – Shadowing 00:02:49
    • Tip 5 - Beginners Mistakes – Indentation 00:02:28
    • Tip 6 - PEP8 - Python Style Guide 00:04:02
    • Tip 7 - PEP20 - Zen of Python 00:03:21
  10. Chapter 10 : Introduction to Object Oriented Programming
    • Step 00 - Introduction to Object Oriented Programming - Section Overview 00:01:01
    • Step 01 - Introduction to Object Oriented Programming – Basics 00:05:24
    • Step 02 - Introduction to Object Oriented Programming - Terminology - Class, Object 00:04:56
    • Step 03 - Introduction to Object Oriented Programming - Exercise - Online Shopping 00:03:09
    • Step 04 - First Class and Object - Country class 00:05:33
    • Step 05 - Create Motor Bike Python Class and a couple of objects 00:07:24
    • Step 06 - Class and Objects - a few Puzzles 00:03:53
    • Step 07 - Constructor for MotorBike class 00:07:33
    • Step 08 - Constructor for Book class – Exercise 00:01:32
    • Step 09 - Constructors – Puzzles 00:08:29
    • Step 10 - Class and Objects - Methods and Behavior 00:06:54
    • Step 11 - Exercise - Enhance Book class with copies 00:03:24
    • Step 12 - Class and Objects - Methods and Behavior - Puzzles on self 00:04:59
    • Step 13 - Advantages of Encapsulation 00:03:09
    • Step 14 - Everything is Object in Python 00:04:17
  11. Chapter 11 : Python Data Structures
    • Step 01 - Python Data Structures - Why do we need them? 00:04:21
    • Step 02 - Operations on List Data Structure 00:03:12
    • Step 03 - Exercise with List - Student class 00:08:52
    • Step 04 - Puzzles with Strings Lists 00:06:46
    • Step 05 - List Slicing 00:06:05
    • Step 06 - List Sorting, Looping and Reversing 00:07:18
    • Step 07 - List as a Stack and Queue 00:03:50
    • Step 08 - List with a custom class - Country and representation 00:04:48
    • Step 08 - List with a custom class - Part 2 - sorting, max and min 00:04:58
    • Step 09 - List Comprehension 00:05:20
    • Step 10 - Introduction to Set 00:05:40
    • Step 11 - Introduction to Dictionary 00:04:59
    • Step 12 - Exercise with Dictionary - Word and Character Occurrences 00:04:33
    • Step 13 - Puzzles with Data Structures 00:05:48
    • Step 14 – Tuples 00:06:59
  12. Chapter 12 : Object Oriented Programming Again
    • Step 01 - OOPS Basics Revised 00:02:06
    • Step 02 - Designing a Fan Class 00:08:19
    • Step 03 - Object Composition - Book and Reviews 00:08:22
    • Step 04 - Why do we need Inheritance 00:04:32
    • Step 05 - All classes in Python 3 inherit from object 00:01:30
    • Step 06 - Multiple Inheritance 00:05:06
    • Step 07 - Creating and Using an Abstract Class 00:04:04
    • Step 08 - Template Method Pattern with Recipe Class 00:07:05
    • Step 09 - A Quick Revision 00:01:33
  13. Chapter 13 : Error Handling with Python
    • Step 01 - Introduction to Error Handling - Your Thought Process during Error Handling 00:03:11
    • Step 02 - Basics of Exception Hierarchy 00:04:10
    • Step 03 - Basics of Error Handling - try except 00:04:48
    • Step 04 - Handling Multiple Errors with Multiple except blocks 00:07:31
    • Step 05 - Error Handling - Puzzles - Exception Details 00:06:39
    • Step 06 - Error Handling - finally and else 00:04:22
    • Step 07 - Error Handling - Puzzles 2 00:02:47
    • Step 08 - Raising Exceptions 00:07:02
    • Step 09 - Raising Custom Exceptions 00:03:52
  14. Chapter 14 : A Few More Python Tips
    • Tip 1 - Math Module and Decimal Class 00:04:33
    • Tip 2 - Statistics Module - find mean and median 00:02:30
    • Tip 3 - Collections Module - deque for Queue and Stack 00:02:52
    • Tip 4 - Date Module 00:06:07
    • Tip 5 - Methods and Arguments – Basics 00:07:15
    • Tip 6 - Methods and Arguments - Keyword Arguments 00:04:50
    • Tip 7 - Methods and Arguments - Unpacking Lists and Dictionaries 00:03:45
    • Tip 8 - Creating Custom Modules and Using Them 00:06:34
    • Tip 9 - Defining Equality for Classes 00:07:56
    • Tip 10 – None 00:05:53
  15. Chapter 15 : Thank You and Congratulations
    • Congratulations 00:00:50
  16. Show and hide more

    Oreilly - Python Programming for Beginners - Learn in 100 Easy Steps


 TO MAC USERS: If RAR password doesn't work, use this archive program: 

RAR Expander 0.8.5 Beta 4  and extract password protected files without error.


 TO WIN USERS: If RAR password doesn't work, use this archive program: 

Latest Winrar  and extract password protected files without error.


 Coktum   |  

Information
Members of Guests cannot leave comments.


SermonBox - Seasonal Collection

SermonBox - The Series Pack Collection

Top Rated News

  • Christmas Material
  • Laser Cut & Print Design Elements Bundle - ETSY
  • Daz3D - All Materials - SKU 37000-37999
  • Cgaxis - All Product - 2019 - All Retail! - UPDATED!!!
  • DigitalXModels Full Collections
  • Rampant Design Tools Full Collections Total: $4400
  • FilmLooks.Com Full Collection
  • All PixelSquid Product
  • The Pixel Lab Collection
  • Envato Elements Full Sources- 3200+ Files
  • Ui8.NET Full Sources
  • The History of The 20th Century
  • The Dover Collections
  • Snake Interiors Collections
  • Inspirational Collections
  • Veer Fancy Collections
  • All Ojo Images
  • All ZZVE Collections
  • All Sozaijiten Collections
  • All Image Broker Collections
  • Shuterstock Bundle Collections
  • Tattoo Collections
  • Blend Images Collections
  • Authors Tuorism Collections
  • Motion Mile - Big Bundle
  • PhotoBacks - All Product - 2018
  • Dekes Techniques - Photoshop & Illustrator Course - 1 to 673
Telegram GFXTRA Group
Udemy - Turkce Gorsel Ogrenme Setleri - Part 2
Videohive Wow Pack Series


rss