Skip to content

Packt Java to Python in 100 Easy Steps - The Fastest Way to Learn Python for Experienced Java Programmers

Unverified source. This magnet is from an unverified source. The content may be unsafe or mislabeled. Proceed with caution.
Title: Packt Java to Python in 100 Easy StepsGroup: NOGRPSource: Packt
Info Hash
9F6302C68E62476DF83B1AFBB0F4A9E1B87A2BBB
Source
Unverified
Total Size
896.56 MB
Total Files
100
Seeders
1
Leechers
0
Health
1.00
Score
2
Type
Bookware

File List

FileSize
05.Python Data Structures/0512.Puzzles with Data Structures.mp485.81 MB
01.Introduction/0102.Introduction-to-the-Course-Guide.mp42.3 MB
01.Introduction/0103.Installing Python 3 and Launch Python Shell.mp45.26 MB
01.Introduction/0104.Installing PyCharm.mp42.75 MB
02.Getting Started With Python/0201.Hello World in Python.mp44.58 MB
02.Getting Started With Python/0202.Hello World in Python - Making Sense.mp46.95 MB
02.Getting Started With Python/0203.Importing-Java-Code-into-Eclipse.mp45.88 MB
02.Getting Started With Python/0204.Your First Python Method.mp49.07 MB
02.Getting Started With Python/0205.Your First Python Method - A Few Tips.mp410.32 MB
02.Getting Started With Python/0206.Passing Parameters and Your First Python Loop.mp47.46 MB
02.Getting Started With Python/0207.Exercises with Python Methods and For Loop.mp48.77 MB
02.Getting Started With Python/0208.Python For Loop – Puzzles.mp45.58 MB
02.Getting Started With Python/0209.Writing Java Example in Python - Part 1.mp46.77 MB
02.Getting Started With Python/0210.Writing Java Example in Python - Part 2.mp47.39 MB
02.Getting Started With Python/0211.Returning values from methods.mp45.47 MB
02.Getting Started With Python/0212.Introduction to Basic Data Types in Python.mp45.66 MB
02.Getting Started With Python/0213.Python is Strongly Typed and Dynamic Language.mp45.01 MB
02.Getting Started With Python/0214.Numberic Operators and Functions in Python.mp47.88 MB
02.Getting Started With Python/0215.Boolean Operators in Python.mp44.78 MB
02.Getting Started With Python/0216.Python Text Data Type – String.mp412.77 MB
02.Getting Started With Python/0217.Data Type Conversion – Puzzles.mp47.26 MB
02.Getting Started With Python/0218.Strings are immutable.mp49.17 MB
02.Getting Started With Python/0219.There is no separate Character data type.mp44.69 MB
02.Getting Started With Python/0220.String module.mp47.79 MB
02.Getting Started With Python/0221.Exercise - is vowel, print lower case and upper case characters.mp411.61 MB
02.Getting Started With Python/0222.String - Exercises and Puzzles.mp410.33 MB
03.Conditionals and Loops/0301.Overview of Conditionals and Loops in Python.mp412.59 MB
03.Conditionals and Loops/0302.Shortcut If Statement.mp42.71 MB
03.Conditionals and Loops/0303.If Else and Elif in Python.mp46.72 MB
03.Conditionals and Loops/0304.If Elif Exercise - Java to Python.mp411.11 MB
03.Conditionals and Loops/0305.Conditionals - Java vs Python.mp48.34 MB
03.Conditionals and Loops/0306.For Loop - A Review.mp43.66 MB
03.Conditionals and Loops/0307.For Loop - A few examples.mp410.71 MB
03.Conditionals and Loops/0308.While Loop in Python - Introduction and Exercise.mp46.78 MB
03.Conditionals and Loops/0309.Implementing Do While with While.mp410.65 MB
04.Object Oriented Programming with Python/0401.OOPS in Python - An overview.mp44.34 MB
04.Object Oriented Programming with Python/0402.Your First Python Class - Empty Class and Instances.mp49.95 MB
04.Object Oriented Programming with Python/0403.Instance Variables and Constructors in Python.mp414.7 MB
04.Object Oriented Programming with Python/0404.Exercise - Part 1 - Add an attribute.mp47.05 MB
04.Object Oriented Programming with Python/0405.Exercise - Part 2 - Create a new Class.mp44.29 MB
04.Object Oriented Programming with Python/0406.Constructors in Python - A few tips.mp419.37 MB
04.Object Oriented Programming with Python/0407.Adding instance methods.mp48.62 MB
04.Object Oriented Programming with Python/0408.OOPS Under the Hood.mp415.13 MB
04.Object Oriented Programming with Python/0409.Inheritance in Python.mp415.61 MB
04.Object Oriented Programming with Python/0410.Multiple Inheritance in Python.mp46.37 MB
04.Object Oriented Programming with Python/0411.Every class extends object.mp46.91 MB
04.Object Oriented Programming with Python/0412.Creating an Abstract Class.mp419.51 MB
04.Object Oriented Programming with Python/0413.Representing an Interface using Abstract Class.mp414.03 MB
04.Object Oriented Programming with Python/0414.Polymorphism and Duck Typing.mp416.34 MB
04.Object Oriented Programming with Python/0415.Static Variables at Class Level.mp411.39 MB
04.Object Oriented Programming with Python/0416.Static Methods in Python.mp47.55 MB
05.Python Data Structures/0501.Introduction to Data Structures in Python.mp42.98 MB
05.Python Data Structures/0502.Operations on List Data Structure.mp43.92 MB
05.Python Data Structures/0503.Puzzles with Strings Lists.mp49.74 MB
05.Python Data Structures/0504.List Slicing.mp48.49 MB
05.Python Data Structures/0505.List Sorting, Looping and Reversing.mp49.62 MB
05.Python Data Structures/0506.List as a Stack and Queue.mp44.45 MB
05.Python Data Structures/0507.List with a custom class - Country and representation.mp48.56 MB
05.Python Data Structures/0508.List with a custom class - Part 2 - sorting, max and min.mp410.55 MB
05.Python Data Structures/0509.List Comprehension.mp48.01 MB
05.Python Data Structures/0510.Introduction to Set.mp48.03 MB
05.Python Data Structures/0511.Introduction to Dictionary.mp46.61 MB
01.Introduction/0101.Introduction-to-the-Course.mp44 MB
05.Python Data Structures/0513.Tuples.mp49.21 MB
06.Exception Handling in Python/0601.Part 1 - Overview of Exception Handling.mp45.14 MB
06.Exception Handling in Python/0602.Part 2 - Exceptions in Python.mp47.82 MB
06.Exception Handling in Python/0603.Exception Handling with try except else finally block.mp411.24 MB
06.Exception Handling in Python/0604.Throwing Custom Exceptions in Python.mp417.82 MB
07.Functional Programming/0701.Functions are First Class Citizens in Python.mp47.4 MB
07.Functional Programming/0702.Introduction to Lambdas.mp48.33 MB
07.Functional Programming/0703.Filtering a list using filter method.mp410.8 MB
07.Functional Programming/0704.Mapping a List with map method.mp49.33 MB
07.Functional Programming/0705.Reduce a List to one result value.mp47.72 MB
07.Functional Programming/0706.Combining map, filter and reduce - Example 1.mp46.78 MB
07.Functional Programming/0707.Combining map, filter and reduce - Example 2.mp46.51 MB
08.Built-In Python Modules/0801.Tip 1 - Using Predefined Python Modules.mp46.26 MB
08.Built-In Python Modules/0802.Tip 2 - Math Module and Decimal Class.mp46.86 MB
08.Built-In Python Modules/0803.Tip 3 - Statistics Module - find mean and median.mp44.06 MB
08.Built-In Python Modules/0804.Tip 4 - Collections Module - deque for Queue and Stack.mp43.61 MB
08.Built-In Python Modules/0805.Tip 5 - Date Module.mp49.37 MB
09.Python Tips/0901.Tip 1 - Loop - Getting Index Element.mp43.27 MB
09.Python Tips/0902.Tip 2 - Enum in Python.mp45.54 MB
09.Python Tips/0903.Tip 3 - Methods and Arguments – Basics.mp412.06 MB
09.Python Tips/0904.Tip 4 - Methods and Arguments - Keyword Arguments.mp411.72 MB
09.Python Tips/0905.Tip 5 - Methods and Arguments - Unpacking Lists and Dictionaries.mp48.62 MB
09.Python Tips/0906.Tip 6 - PEP8 - Python Style Guide.mp48.1 MB
09.Python Tips/0907.Tip 7 - PEP20 - Zen of Python.mp45.72 MB
09.Python Tips/0908.Tip 8 - Creating Custom Modules and Using Them.mp411.14 MB
09.Python Tips/0909.Tip 9 – None.mp48.63 MB
09.Python Tips/0910.Tip 10 - repr vs str.mp44.03 MB
09.Python Tips/0911.Tip 11 - No Switch in Python.mp44.11 MB
09.Python Tips/0912.Tip 12 - Generating Random Values in Python.mp45.68 MB
09.Python Tips/0913.Tip 13 - Returning Multiple Values using Tuples.mp41.91 MB
09.Python Tips/0914.Tip 14 - Implementing Data Classes with namedtuple.mp43.15 MB
09.Python Tips/0915.Tip 15 - Getters and Setters is Python Anti Pattern.mp49.83 MB
09.Python Tips/0916.Tip 16 - Implementing Property Decorators.mp412.55 MB
09.Python Tips/0917.Tip 17 - Operator Overloading - Adding and subtracting amounts.mp49.37 MB
09.Python Tips/0918.Tip 18 - Operator Overloading - Other Operators.mp44.63 MB
09.Python Tips/0919.Tip 19 - Comparing equality of objects.mp48.78 MB
09.Python Tips/0920.Tip 20 - Using greater than and less than to compare objects.mp47.67 MB

Trackers

No trackers found.