Torrent Info
Title Packt Java to Python in 100 Easy Steps - The Fastest Way to Learn Python for Experienced Java Programmers
Category
Size 896.56MB

Files List
Please note that this page does not hosts or makes available any of the listed filenames. You cannot download any of those files from here.
0101.Introduction-to-the-Course.mp4 4.00MB
0102.Introduction-to-the-Course-Guide.mp4 2.30MB
0103.Installing Python 3 and Launch Python Shell.mp4 5.26MB
0104.Installing PyCharm.mp4 2.75MB
0201.Hello World in Python.mp4 4.58MB
0202.Hello World in Python - Making Sense.mp4 6.95MB
0203.Importing-Java-Code-into-Eclipse.mp4 5.88MB
0204.Your First Python Method.mp4 9.07MB
0205.Your First Python Method - A Few Tips.mp4 10.32MB
0206.Passing Parameters and Your First Python Loop.mp4 7.46MB
0207.Exercises with Python Methods and For Loop.mp4 8.77MB
0208.Python For Loop – Puzzles.mp4 5.58MB
0209.Writing Java Example in Python - Part 1.mp4 6.77MB
0210.Writing Java Example in Python - Part 2.mp4 7.39MB
0211.Returning values from methods.mp4 5.47MB
0212.Introduction to Basic Data Types in Python.mp4 5.66MB
0213.Python is Strongly Typed and Dynamic Language.mp4 5.01MB
0214.Numberic Operators and Functions in Python.mp4 7.88MB
0215.Boolean Operators in Python.mp4 4.78MB
0216.Python Text Data Type – String.mp4 12.77MB
0217.Data Type Conversion – Puzzles.mp4 7.26MB
0218.Strings are immutable.mp4 9.17MB
0219.There is no separate Character data type.mp4 4.69MB
0220.String module.mp4 7.79MB
0221.Exercise - is vowel, print lower case and upper case characters.mp4 11.61MB
0222.String - Exercises and Puzzles.mp4 10.33MB
0301.Overview of Conditionals and Loops in Python.mp4 12.59MB
0302.Shortcut If Statement.mp4 2.71MB
0303.If Else and Elif in Python.mp4 6.72MB
0304.If Elif Exercise - Java to Python.mp4 11.11MB
0305.Conditionals - Java vs Python.mp4 8.34MB
0306.For Loop - A Review.mp4 3.66MB
0307.For Loop - A few examples.mp4 10.71MB
0308.While Loop in Python - Introduction and Exercise.mp4 6.78MB
0309.Implementing Do While with While.mp4 10.65MB
0401.OOPS in Python - An overview.mp4 4.34MB
0402.Your First Python Class - Empty Class and Instances.mp4 9.95MB
0403.Instance Variables and Constructors in Python.mp4 14.70MB
0404.Exercise - Part 1 - Add an attribute.mp4 7.05MB
0405.Exercise - Part 2 - Create a new Class.mp4 4.29MB
0406.Constructors in Python - A few tips.mp4 19.37MB
0407.Adding instance methods.mp4 8.62MB
0408.OOPS Under the Hood.mp4 15.13MB
0409.Inheritance in Python.mp4 15.61MB
0410.Multiple Inheritance in Python.mp4 6.37MB
0411.Every class extends object.mp4 6.91MB
0412.Creating an Abstract Class.mp4 19.51MB
0413.Representing an Interface using Abstract Class.mp4 14.03MB
0414.Polymorphism and Duck Typing.mp4 16.34MB
0415.Static Variables at Class Level.mp4 11.39MB
0416.Static Methods in Python.mp4 7.55MB
0501.Introduction to Data Structures in Python.mp4 2.98MB
0502.Operations on List Data Structure.mp4 3.92MB
0503.Puzzles with Strings Lists.mp4 9.74MB
0504.List Slicing.mp4 8.49MB
0505.List Sorting, Looping and Reversing.mp4 9.62MB
0506.List as a Stack and Queue.mp4 4.45MB
0507.List with a custom class - Country and representation.mp4 8.56MB
0508.List with a custom class - Part 2 - sorting, max and min.mp4 10.55MB
0509.List Comprehension.mp4 8.01MB
0510.Introduction to Set.mp4 8.03MB
0511.Introduction to Dictionary.mp4 6.61MB
0512.Puzzles with Data Structures.mp4 85.81MB
0513.Tuples.mp4 9.21MB
0601.Part 1 - Overview of Exception Handling.mp4 5.14MB
0602.Part 2 - Exceptions in Python.mp4 7.82MB
0603.Exception Handling with try except else finally block.mp4 11.24MB
0604.Throwing Custom Exceptions in Python.mp4 17.82MB
0701.Functions are First Class Citizens in Python.mp4 7.40MB
0702.Introduction to Lambdas.mp4 8.33MB
0703.Filtering a list using filter method.mp4 10.80MB
0704.Mapping a List with map method.mp4 9.33MB
0705.Reduce a List to one result value.mp4 7.72MB
0706.Combining map, filter and reduce - Example 1.mp4 6.78MB
0707.Combining map, filter and reduce - Example 2.mp4 6.51MB
0801.Tip 1 - Using Predefined Python Modules.mp4 6.26MB
0802.Tip 2 - Math Module and Decimal Class.mp4 6.86MB
0803.Tip 3 - Statistics Module - find mean and median.mp4 4.06MB
0804.Tip 4 - Collections Module - deque for Queue and Stack.mp4 3.61MB
0805.Tip 5 - Date Module.mp4 9.37MB
0901.Tip 1 - Loop - Getting Index Element.mp4 3.27MB
0902.Tip 2 - Enum in Python.mp4 5.54MB
0903.Tip 3 - Methods and Arguments – Basics.mp4 12.06MB
0904.Tip 4 - Methods and Arguments - Keyword Arguments.mp4 11.72MB
0905.Tip 5 - Methods and Arguments - Unpacking Lists and Dictionaries.mp4 8.62MB
0906.Tip 6 - PEP8 - Python Style Guide.mp4 8.10MB
0907.Tip 7 - PEP20 - Zen of Python.mp4 5.72MB
0908.Tip 8 - Creating Custom Modules and Using Them.mp4 11.14MB
0909.Tip 9 – None.mp4 8.63MB
0910.Tip 10 - repr vs str.mp4 4.03MB
0911.Tip 11 - No Switch in Python.mp4 4.11MB
0912.Tip 12 - Generating Random Values in Python.mp4 5.68MB
0913.Tip 13 - Returning Multiple Values using Tuples.mp4 1.91MB
0914.Tip 14 - Implementing Data Classes with namedtuple.mp4 3.15MB
0915.Tip 15 - Getters and Setters is Python Anti Pattern.mp4 9.83MB
0916.Tip 16 - Implementing Property Decorators.mp4 12.55MB
0917.Tip 17 - Operator Overloading - Adding and subtracting amounts.mp4 9.37MB
0918.Tip 18 - Operator Overloading - Other Operators.mp4 4.63MB
0919.Tip 19 - Comparing equality of objects.mp4 8.78MB
0920.Tip 20 - Using greater than and less than to compare objects.mp4 7.67MB
0921.Tip 21 - Total Ordering - Simplifying object comparison.mp4 8.01MB
0922.Congratulations.mp4 1.35MB
exercise_files.zip 1.73MB
Distribution statistics by country
Total 0
IP List List of IP addresses which were distributed this torrent