Companies Home Search Profile

Python Made Easy for Beginners

Focused View

Arun Motoori

14:05:47

124 View
  • 1.1 Introduction to Python (Python Tutorial - Part 1).pdf
  • 1. Introduction to Python.mp4
    02:21
  • 2.1 Downloading, Installing and Configuring Python (Python Tutorial - Part 2).pdf
  • 2. Downloading, Installing and Configuring Python.mp4
    04:53
  • 3.1 Downloading, Installing and Using PyCharm IDE (Python Tutorial - Part 3).pdf
  • 3. Downloading, Installing and Using PyCharm IDE.mp4
    11:00
  • 4.1 Printing in Python using Print statements (Python Tutorial - Part 4).pdf
  • 4. Printing in Python using Print statements.mp4
    06:34
  • 1.1 Variables in Python (Python Tutorial - Part 5).pdf
  • 1. Variables in Python.mp4
    20:24
  • 1.1 Data Types in Python (Python Tutorial - Part 6).pdf
  • 1. Data Types in Python.mp4
    04:12
  • 2.1 Type Casting in Python (Python Tutorial - Part 7).pdf
  • 2. Type Casting in Python.mp4
    11:20
  • 1.1 Operators in Python (Python Tutorial - Part 8).pdf
  • 1. Operators in Python.mp4
    26:41
  • 1.1 Comments in Python (Python Tutorial - Part 9).pdf
  • 1. Comments in Python.mp4
    12:26
  • 2.1 Operator Precedence in Python (Python Tutorial - Part 10).pdf
  • 2. Operator Precedence in Python.mp4
    10:41
  • 3.1 Deleting a variable in Python (Python Tutorial - Part 11).pdf
  • 3. Deleting a variable in Python.mp4
    01:46
  • 4.1 Using + for String concatenation (Python Tutorial - Part 12).pdf
  • 4. Using + for String concatenation.mp4
    05:46
  • 5.1 Storing Multi-line preformatted String text into a variable (Python Tutorial - Part 13).pdf
  • 5. Storing Multi-line preformatted String text into a variable.mp4
    03:32
  • 6. Storing a lengthy text into a variable.mp4
    04:14
  • 7.1 Formatting Print statements in Python (Python Tutorial - Part 15).pdf
  • 7. Formatting Print statements in Python.mp4
    10:40
  • 1.1 Control Flow Statements in Python (Python Tutorial - Part 16).pdf
  • 1. Control Flow Statements in Python.mp4
    03:31
  • 2.1 Selection_Decision Control Statements in Python - if, else, elif (Python Tutorial - Part 17).pdf
  • 2. SelectionDecision Control Statements in Python - if, else, elif.mp4
    20:13
  • 3.1 while loop in Python (Python Tutorial - Part 18).pdf
  • 3. while loop in Python.mp4
    15:26
  • 4.1 for loop with range() in Python (Python Tutorial - Part 19).pdf
  • 4. for loop with range() in Python.mp4
    13:32
  • 5.1 break and continue statements in Python - Transfer_Jump Statements (Python Tutorial - Part 20).pdf
  • 5. break and continue statements in Python - TransferJump Statements.mp4
    12:53
  • 1.1 Functions - Getting started (Python Tutorial - Part 21).pdf
  • 1. Functions - Getting started.mp4
    05:54
  • 2.1 Function can be called multiple times (Python Tutorial - Part 22).pdf
  • 2. Function can be called multiple times.mp4
    01:50
  • 3.1 Parameterizing functions (Python Tutorial - Part 23).pdf
  • 3. Parameterizing functions.mp4
    06:32
  • 4.1 Default Arguments in functions (Python Tutorial - Part 24).pdf
  • 4. Default Arguments in functions.mp4
    03:46
  • 5.1 Function with multiple parameters (Python Tutorial - Part 25).pdf
  • 5. Function with multiple parameters.mp4
    02:02
  • 6.1 Functions can return data (Python Tutorial - Part 26).pdf
  • 6. Functions can return data.mp4
    03:31
  • 7.1 Purpose of functions (Python Tutorial - Part 27).pdf
  • 7. Purpose of functions.mp4
    03:50
  • 8.1 Multiple functions can be created (Python Tutorial - Part 28).pdf
  • 8. Multiple functions can be created.mp4
    02:15
  • 1.1 Collecting input from User using input() in-built function (Python Tutorial - Part 29).pdf
  • 1. Collecting input from User using input() in-built function.mp4
    07:00
  • 2.1 max() and min() in-built functions in python (Python Tutorial - Part 30).pdf
  • 2. max() and min() in-built functions in python.mp4
    03:24
  • 3.1 Local and Global Variables in Python (Python Tutorial - Part 31).pdf
  • 3. Local and Global Variables in Python.mp4
    10:43
  • 4.1 pass statement in Python (Python Tutorial - Part 32).pdf
  • 4. pass statement in Python.mp4
    03:53
  • 1.1 Collections in Python (Python Tutorial - Part 33).pdf
  • 1. Collections in Python.mp4
    03:21
  • 2.1 List - Collections (Python Tutorial - Part 34).pdf
  • 2. List - Collections.mp4
    36:31
  • 3.1 Tuple - Collections (Python Tutorial - Part 35).pdf
  • 3. Tuple - Collections.mp4
    22:40
  • 4.1 Set - Collections (Python Tutorial - Part 36).pdf
  • 4. Set - Collections.mp4
    28:32
  • 5.1 Dictionary - Collections (Python Tutorial - Part 37).pdf
  • 5. Dictionary - Collections.mp4
    21:01
  • 6.1 List Versus Tuple Versus Set Versus Dictionary (Python Tutorial - Part 38).pdf
  • 6. List Versus Tuple Versus Set Versus Dictionary.mp4
    09:12
  • 1.1 Strings (Python Tutorial - Part 39).pdf
  • 1. Strings.mp4
    29:05
  • 1.1 in and not in operators (Python Tutorial - Part 40).pdf
  • 1. in and not in operators.mp4
    06:24
  • 1.1 File Handling (Python Tutorial - Part 41).pdf
  • 1. File Handling.mp4
    15:30
  • 1.1 Getting started with Object Oriented Programing - Classes and Objects (Python Tutorial - Part 42).pdf
  • 1. Getting started with Object Oriented Programing - Classes and Objects.mp4
    24:27
  • 2.1 self in Python (Python Tutorial - Part 43).pdf
  • 2. self in Python.mp4
    11:10
  • 3.1 Assigning method parameters to class variables using self keyword (Python Tutorial - Part 44).pdf
  • 3. Assigning method parameters to class variables using self keyword.mp4
    16:11
  • 4.1 Initializing Class Variables using methods in Python (Python Tutorial - Part 45).pdf
  • 4. Initializing Class Variables using methods in Python.mp4
    18:06
  • 5.1 __init__ method in Python (Python Tutorial - Part 46).pdf
  • 5. __init__ method in Python.mp4
    04:47
  • 6.1 Static Variables, Static Methods, Instance Variables, Instance Methods (Python Tutorial - Part 47).pdf
  • 6. Static Variables, Static Methods, Instance Variables, Instance Methods.mp4
    26:39
  • 7.1 Inheritance (Python Tutorial - Part 48).pdf
  • 7. Inheritance.mp4
    07:34
  • 8.1 Types of Inheritance (Python Tutorial - Part 49).pdf
  • 8. Types of Inheritance.mp4
    14:09
  • 9.1 Polymorphism - Method Overriding (Python Tutorial - Part 50).pdf
  • 9. Polymorphism - Method Overriding.mp4
    06:51
  • 10.1 Overloading Methods is not directly supported by Python (Python Tutorial - Part 51).pdf
  • 10. Overloading Methods is not directly supported by Python.mp4
    08:37
  • 11.1 super() in Python (Python Tutorial - Part 52).pdf
  • 11. super() in Python.mp4
    11:31
  • 12.1 Using Getter and Setter Methods with private variables in Python (Python Tutorial - Part 54).pdf
  • 12. Using Getter and Setter Methods with private variables in Python.mp4
    06:29
  • 13.1 Private Variable and Private Methods in Python (Python Tutorial - Part 53).pdf
  • 13. Private Variable and Private Methods in Python.mp4
    05:31
  • 14.1 Encapsulation in Python (Python Tutorial - Part 55).pdf
  • 14. Encapsulation in Python.mp4
    07:55
  • 15.1 Abstraction in Python - Abstract Classes and Abstract Methods (Python Tutorial - Part 56).pdf
  • 15. Abstraction in Python - Abstract Classes and Abstract Methods.mp4
    22:30
  • 1. Modules in Python.mp4
    25:32
  • 1.1 Packages in Python (Python Tutorial - Part 58).pdf
  • 1. Packages in Python.mp4
    19:33
  • 1.1 Exception Handling in Python (Python Tutorial - Part 59).pdf
  • 1. Exception Handling in Python.mp4
    34:12
  • 1.1 Lambda function in Python (Python Tutorial - Part 60).pdf
  • 1. Lambda function in Python.mp4
    05:59
  • 1.1 Using _args in Python (Python Tutorial - Part 61).pdf
  • 1. Using args in Python.mp4
    05:21
  • 2.1 Using __kwargs in Python (Python Tutorial - Part 62).pdf
  • 2. Using kwargs in Python.mp4
    09:06
  • 3.1 Unpacking Collections or range() into individual variables (Python Tutorial - Part 63).pdf
  • 3. Unpacking Collections or range() into individual variables.mp4
    07:48
  • 4.1 Complex Data Type in Python (Python Tutorial - Part 64).pdf
  • 4. Complex Data Type in Python.mp4
    09:43
  • 5.1 range Data Type in Python (Python Tutorial - Part 65).pdf
  • 5. range Data Type in Python.mp4
    16:51
  • 6.1 Complete List of Data Types in Python (Python Tutorial - Part 66).pdf
  • 6. Complete List of Data Types in Python.mp4
    06:08
  • 7.1 Generating Random numbers in Python (Python Tutorial - Part 67).pdf
  • 7. Generating Random numbers in Python.mp4
    07:21
  • 8.1 Escape Characters in Python (Python Tutorial - Part 68).pdf
  • 8. Escape Characters in Python.mp4
    08:43
  • 9.1 Using bool() function in python for evaluating values as True or False (Python Tutorial - Part 69).pdf
  • 9. Using bool() function in python for evaluating values as True or False.mp4
    06:02
  • 10.1 Short Hand if and if .. else Statements in Python (Python Tutorial - Part 70).pdf
  • 10. Short Hand if and if .. else Statements in Python.mp4
    04:05
  • 11.1 User iter() function in Python with List, Tuple, Set and Dictionary (Python Tutorial - Part 71).pdf
  • 11. User iter() function in Python with List, Tuple, Set and Dictionary.mp4
    05:53
  • 12.1 Date and Time in Python (Python Tutorial - Part 72).pdf
  • 12. Date and Time in Python.mp4
    10:45
  • 13.1 Regular Expressions in Python (Python Tutorial - Part 73).pdf
  • 13. Regular Expressions in Python.mp4
    41:17
  • Description


    Beginners to Advanced Python Course for Beginners (Check course contents for more details)

    What You'll Learn?


    • Python from Basics to Advanced
    • Python Programming Language
    • Python for Beginners
    • Python from Scratch

    Who is this for?


  • Python Beginners from any field
  • Python required for Software Testers
  • Python required for learning Selenium Automation Tool
  • More details


    Description

    This Python Made Easy for Beginners course covers the below topics:

    1. Introduction to Python

    2. Downloading, Installing and Configuring Python

    3. Downloading, Installing and Using PyCharm IDE

    4. Print Statements

    5. Variables

    6. Data Types

    7. Type Casting

    8. Operators

    9. Comments

    10. Operator Precedence

    11. Deleting a Variable

    12. Using + for String concatenation

    13. Storing Multi-line preformatted String text into a variable

    14. Storing a lengthy text into a variable

    15. Formatting Print Statements

    16. Control Flow Statements

    17. Select/Decision Control Statements

    18. while loop

    19. for loop with range()

    20. break and continue statements

    21. Functions - Getting Started

    22. Functions can be called multiple times

    23. Parameterizing Functions

    24. Default Arguments in Functions

    25. Function with multiple parameters

    26. Functions can return data

    27. Purpose of Functions

    28. Multiple functions can be created

    29. Using input() inbuilt function

    30. max() and min() functions

    31. Local and Global Variables

    32. pass Statement

    33. Collections

    34. List

    35. Tuple

    36. Set

    37. Dictionary

    38. List versus Tuple versus Set versus Dictionary

    39. Strings

    40. in and not in operators

    41. File Handling

    42. Getting started with Object Oriented Programming

    43. self in Python

    44. Assigning method parameters to class variables using self keyword

    45. Initializing Class variables using methods in Python

    46. __init__ method

    47. Static Variables, Static Methods, Instance Variables and Instance Methods

    48. Inheritance

    49. Types of Inheritance

    50. Polymorphism - Method Overriding

    51. Overloading is not supported by Python

    52. super()

    53. Private variables and Private methods

    54. Using Getter and Setter Methods with private variables

    55. Encapsulation in Python

    56. Abstraction in Python

    57. Modules

    58. Packages

    59. Exception Handling

    60. Lambda Functions

    61. Using *args

    62. Using **kwargs

    63. Unpacking Collections or range() into individual variables

    64. Complex Data Type

    65. range Data Type

    66. Complete List of Data Types

    67. Generating Random Numbers

    68. Escape Characters

    69. Using bool() function

    70. Short Hand if and if ..else statements

    71. Using iter() function with List, Tuple, Set and Dictionary

    72. Date and Time

    73. Regular Expressions

    Who this course is for:

    • Python Beginners from any field
    • Python required for Software Testers
    • Python required for learning Selenium Automation Tool

    User Reviews
    Rating
    0
    0
    0
    0
    0
    average 0
    Total votes0
    Focused display
    Category
    Arun Motoori
    Arun Motoori
    Instructor's Courses
    I am a passionate blogger and trainer having 12 years of experience in Software Testing field. My aim is to provide the best, in-detailed, easy, step by step, practical and organized software testing courses in the market for affordable prices. The following are my strengths:- I have a very unique way of teaching, which doesn't include much of technical jargons and helps the students understand Software Testing concepts in the easiest way possible.- Through out my experience, I did a lot of work on various aspects of Software Testing, which I will be using in my courses to teach in the best way possible.- Through out my courses, you will find the content with in-depth explanation assisted by good number of hands-on coding demonstrations, which will help you to not only just learn the theoretical concepts but also apply them in your day to day job needs. - I can confidently say that you will find my courses worth your time and a rewarding experience. - The content in my courses is finalized after taking numerous off-line/on-line training sessions including feedback from all my students. - Throughout the course, I will always be available to guide you so that you can make the most of it.
    Students take courses primarily to improve job-related skills.Some courses generate credit toward technical certification. Udemy has made a special effort to attract corporate trainers seeking to create coursework for employees of their company.
    • language english
    • Training sessions 73
    • duration 14:05:47
    • Release Date 2022/12/24