Oreilly - Java to Python in 100 Easy Steps - 9781789611960
Oreilly - Java to Python in 100 Easy Steps
by Ranga Karanam | Released August 2018 | ISBN: 9781789611960


The fastest way to learn Python for experienced Java programmersAbout This VideoHow to develop object-oriented programs with Python.How to use a combination of Python Shell and PyCharm as an IDE to illustrate Python coding exercises.In DetailThis course will help you learn Python, one of the most popular programming languages. Python offers both object oriented and structural programming features. We take a hands-on approach using a combination of Python Shell and PyCharm as an IDE to illustrate more than 100 Python coding exercises, puzzles, and code examples. We convert a number of Java examples to Python. You will learn about implementing Object Oriented Programming concepts in Python, inheritance, abstract classes, and constructors; you will also get a better understanding of a wide variety of Python data structures: lists, sets, dictionaries, and tuples. Show and hide more Publisher resources Download Example Code
  1. Chapter 1 : Introduction
    • Introduction-to-the-Course 00:02:41
    • Introduction-to-the-Course-Guide 00:01:26
    • Installing Python 3 and Launch Python Shell 00:03:50
    • Installing PyCharm 00:01:42
  2. Chapter 2 : Getting Started With Python
    • Hello World in Python 00:03:06
    • Hello World in Python - Making Sense 00:05:07
    • Importing-Java-Code-into-Eclipse 00:02:36
    • Your First Python Method 00:05:15
    • Your First Python Method - A Few Tips 00:05:56
    • Passing Parameters and Your First Python Loop 00:03:58
    • Exercises with Python Methods and For Loop 00:04:43
    • Python For Loop – Puzzles 00:03:25
    • Writing Java Example in Python - Part 1 00:04:12
    • Writing Java Example in Python - Part 2 00:03:46
    • Returning values from methods 00:03:06
    • Introduction to Basic Data Types in Python 00:03:57
    • Python is Strongly Typed and Dynamic Language 00:03:55
    • Numberic Operators and Functions in Python 00:06:11
    • Boolean Operators in Python 00:04:21
    • Python Text Data Type – String 00:08:47
    • Data Type Conversion – Puzzles 00:04:38
    • Strings are immutable 00:06:15
    • There is no separate Character data type 00:03:27
    • String module 00:04:37
    • Exercise - is vowel, print lower case and upper case characters 00:07:06
    • String - Exercises and Puzzles 00:05:39
  3. Chapter 3 : Conditionals and Loops
    • Overview of Conditionals and Loops in Python 00:06:49
    • Shortcut If Statement 00:02:25
    • If Else and Elif in Python 00:03:24
    • If Elif Exercise - Java to Python 00:04:53
    • Conditionals - Java vs Python 00:06:39
    • For Loop - A Review 00:03:15
    • For Loop - A few examples 00:06:19
    • While Loop in Python - Introduction and Exercise 00:03:57
    • Implementing Do While with While 00:06:10
  4. Chapter 4 : Object Oriented Programming with Python
    • OOPS in Python - An overview 00:03:35
    • Your First Python Class - Empty Class and Instances 00:04:52
    • Instance Variables and Constructors in Python 00:07:09
    • Exercise - Part 1 - Add an attribute 00:03:15
    • Exercise - Part 2 - Create a new Class 00:02:09
    • Constructors in Python - A few tips 00:09:04
    • Adding instance methods 00:03:42
    • OOPS Under the Hood 00:07:47
    • Inheritance in Python 00:06:50
    • Multiple Inheritance in Python 00:02:57
    • Every class extends object 00:02:23
    • Creating an Abstract Class 00:08:43
    • Representing an Interface using Abstract Class 00:06:46
    • Polymorphism and Duck Typing 00:06:31
    • Static Variables at Class Level 00:05:53
    • Static Methods in Python 00:03:26
  5. Chapter 5 : Python Data Structures
    • Introduction to Data Structures in Python 00:01:43
    • Operations on List Data Structure 00:03:12
    • Puzzles with Strings Lists 00:06:46
    • List Slicing 00:06:05
    • List Sorting, Looping and Reversing 00:07:18
    • List as a Stack and Queue 00:03:50
    • List with a custom class - Country and representation 00:04:48
    • List with a custom class - Part 2 - sorting, max and min 00:04:58
    • List Comprehension 00:05:20
    • Introduction to Set 00:05:40
    • Introduction to Dictionary 00:04:59
    • Puzzles with Data Structures 00:05:47
    • Tuples 00:06:59
  6. Chapter 6 : Exception Handling in Python
    • Part 1 - Overview of Exception Handling 00:02:17
    • Part 2 - Exceptions in Python 00:04:10
    • Exception Handling with try except else finally block 00:05:05
    • Throwing Custom Exceptions in Python 00:06:31
  7. Chapter 7 : Functional Programming
    • Functions are First Class Citizens in Python 00:05:26
    • Introduction to Lambdas 00:05:02
    • Filtering a list using filter method 00:08:01
    • Mapping a List with map method 00:06:28
    • Reduce a List to one result value 00:05:41
    • Combining map, filter and reduce - Example 1 00:05:03
    • Combining map, filter and reduce - Example 2 00:04:58
  8. Chapter 8 : Built-In Python Modules
    • Tip 1 - Using Predefined Python Modules 00:04:01
    • Tip 2 - Math Module and Decimal Class 00:04:33
    • Tip 3 - Statistics Module - find mean and median 00:02:30
    • Tip 4 - Collections Module - deque for Queue and Stack 00:02:52
    • Tip 5 - Date Module 00:06:07
  9. Chapter 9 : Python Tips
    • Tip 1 - Loop - Getting Index Element 00:02:52
    • Tip 2 - Enum in Python 00:03:35
    • Tip 3 - Methods and Arguments – Basics 00:07:15
    • Tip 4 - Methods and Arguments - Keyword Arguments 00:04:50
    • Tip 5 - Methods and Arguments - Unpacking Lists and Dictionaries 00:03:45
    • Tip 6 - PEP8 - Python Style Guide 00:04:02
    • Tip 7 - PEP20 - Zen of Python 00:03:21
    • Tip 8 - Creating Custom Modules and Using Them 00:06:34
    • Tip 9 – None 00:05:53
    • Tip 10 - repr vs str 00:02:57
    • Tip 11 - No Switch in Python 00:02:28
    • Tip 12 - Generating Random Values in Python 00:04:00
    • Tip 13 - Returning Multiple Values using Tuples 00:01:53
    • Tip 14 - Implementing Data Classes with namedtuple 00:02:51
    • Tip 15 - Getters and Setters is Python Anti Pattern 00:05:20
    • Tip 16 - Implementing Property Decorators 00:06:10
    • Tip 17 - Operator Overloading - Adding and subtracting amounts 00:05:28
    • Tip 18 - Operator Overloading - Other Operators 00:02:23
    • Tip 19 - Comparing equality of objects 00:05:31
    • Tip 20 - Using greater than and less than to compare objects 00:04:08
    • Tip 21 - Total Ordering - Simplifying object comparison 00:04:02
    • Congratulations 00:00:59
  10. Show and hide more

    Oreilly - Java to Python 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