Tags
Language
Tags
July 2025
Su Mo Tu We Th Fr Sa
29 30 1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31 1 2
    Attention❗ To save your time, in order to download anything on this site, you must be registered 👉 HERE. If you do not have a registration yet, it is better to do it right away. ✌

    ( • )( • ) ( ͡⚆ ͜ʖ ͡⚆ ) (‿ˠ‿)
    SpicyMags.xyz

    Essential Python Programming - Level1

    Posted By: ELK1nG
    Essential Python Programming - Level1

    Essential Python Programming - Level1
    Published 1/2025
    MP4 | Video: h264, 1280x720 | Audio: AAC, 44.1 KHz
    Language: English | Size: 5.09 GB | Duration: 12h 54m

    For Beginners in python

    What you'll learn

    Understand how write their own python programs

    This Essential Python Course is the perfect place for beginners to understand the core idea of fundamental topics in python.

    Understand fundamental programming syntax and logical skills

    Each topic participants will do hands on activities

    Requirements

    No Programming Experience needed

    Description

    In IT Industry, Python has become one of the most popular programming language.  It's used in every business domain from system administration automation, machine learning, Deep learning to build webpages and software testing. The python programming essential level -1 course is structured mainly  for beginners those  who are new to programming and new to python.  In this course you will learn all the fundamental components of python programming topics such as how to define variable, operators, conditional statements to perform validation, looping statements to do more than one task in python, File Handling and function topics. Each topic you will get definition, syntax, examples and hands on exercise.                                                                                                                         It is a gateway of Advanced python programming (Object Oriented Python Programming - Level 2, which is available in Udemy too)                                                                                                                                                                         If you wish to learn machine learning, the topic functioncal programming will help you to write python programming in comprehension way.                                       This course has been designed completely as a self-paced course. python is a simple and easy to understand so  this course examples are focused more on general coding techniques in procedure style way. In this course all the examples are followed python 3.x version ( python 3.7x std).At the end of this course you can able to write python program as per your needs.

    Overview

    Section 1: Introduction

    Lecture 1 Course Content Discussion

    Section 2: About Python

    Lecture 2 Introduction about python & Features

    Lecture 3 How to Install Python ?

    Lecture 4 How to Install Python using Anaconda Installer?

    Lecture 5 How to run python in your working system? - Subshell

    Lecture 6 How to run python program - using operating system editor ?

    Lecture 7 How to run python program using IDLE?

    Lecture 8 How to run python program using Jupyter ?

    Lecture 9 Activity

    Section 3: Python Variables & Types

    Lecture 10 Python Comments

    Lecture 11 Python - Variable Usages

    Lecture 12 Python Type & type() function

    Lecture 13 int,float and complex numbers

    Lecture 14 Activity

    Section 4: Python String (str)

    Lecture 15 What is a string?

    Lecture 16 String Indexing

    Lecture 17 String Slicing

    Lecture 18 Activity

    Lecture 19 String Concatenation & String Repetition

    Lecture 20 String Methods

    Lecture 21 Activity

    Lecture 22 Output Formatting

    Lecture 23 Multiline String

    Lecture 24 Activity

    Section 5: Python - bytes

    Lecture 25 bytes

    Section 6: Python Typecasting & IO

    Lecture 26 Typecasting

    Lecture 27 Activity

    Lecture 28 How to use len() in python?

    Lecture 29 Activity

    Lecture 30 About input() function

    Section 7: Python Operators

    Lecture 31 Arithmetic Operators

    Lecture 32 Activity

    Lecture 33 Relational operators

    Lecture 34 Activity

    Lecture 35 Logical Operators

    Lecture 36 Activity

    Lecture 37 Membership Operators

    Lecture 38 Activity

    Section 8: Conditional Statements

    Lecture 39 Single Conditional Statements

    Lecture 40 Activity - I

    Lecture 41 Activity - II

    Lecture 42 Multi-Conditional Statements

    Lecture 43 Activity

    Lecture 44 Nested Conditional Statements

    Lecture 45 Activity

    Section 9: Looping statements

    Lecture 46 Types of Looping statements

    Lecture 47 Conditional Style looping statement

    Lecture 48 Activity - 1

    Lecture 49 Activity - 2

    Lecture 50 Collection Style loop

    Lecture 51 Activity - 1

    Lecture 52 Activity - 2

    Section 10: Python Containers - List

    Lecture 53 About List

    Lecture 54 List with for loop

    Lecture 55 Activity - 1

    Lecture 56 Activity - 2

    Lecture 57 List with membership operators

    Lecture 58 Activity

    Lecture 59 List Methods - 1

    Lecture 60 List Methods - 2

    Lecture 61 List Methods - 3

    Lecture 62 List Methods - 4

    Lecture 63 Activity - 1

    Lecture 64 Activity - 2

    Section 11: Python Containers - Tuple

    Lecture 65 Tuple Usage

    Lecture 66 Activity - 1

    Lecture 67 Activity - II

    Lecture 68 Activity - III

    Section 12: Python Containers - Dictionary

    Lecture 69 About Dictionary

    Lecture 70 Dictionary Manipulation

    Lecture 71 Activity - 1

    Lecture 72 Activity - 2

    Lecture 73 Dictionary with For loop & Membership Operators

    Lecture 74 Activity - 1

    Lecture 75 Activity - 2

    Lecture 76 Dictionary Methods

    Lecture 77 Activity - 1

    Lecture 78 Activity - 2

    Section 13: Python Containers - Set

    Lecture 79 About set

    Lecture 80 Set with for loop & Membership Operator

    Lecture 81 Set Operations

    Section 14: About range()

    Lecture 82 range()

    Lecture 83 Activity - 1

    Lecture 84 Activity - II

    Section 15: Python File Handling

    Lecture 85 About File Handling & Its category

    Lecture 86 File Read Operation

    Lecture 87 File Write Operation

    Lecture 88 File Handling read/write

    Lecture 89 File Handling with image file

    Lecture 90 File Handling Block Style

    Section 16: Python Functions

    Lecture 91 Simple Function Call

    Lecture 92 Nested Function Call

    Lecture 93 Activity for Nested Function

    Lecture 94 Function Call with Required Arguments

    Lecture 95 Function Call with Default Arguments

    Lecture 96 Required & Default Arguments

    Lecture 97 Function Call with Variable length arguments

    Lecture 98 Function Call with Keyword arguments

    Lecture 99 Difference between global Vs return

    Section 17: Python Module

    Lecture 100 About Module & sys Module

    Lecture 101 How to import external Python Module to our script

    Lecture 102 Python OS - Module

    Section 18: Python Package

    Lecture 103 Package Creation

    Lecture 104 Package Example

    Section 19: Exception Handling

    Lecture 105 try exception else finally

    Lecture 106 How to raise an Exception

    Section 20: Functional Programming Style

    Lecture 107 lambda

    Lecture 108 Activity for lambda

    Lecture 109 List comprehension

    Lecture 110 Activity

    Lecture 111 Dictionary Comprehension

    Lecture 112 Activity for Dictionary

    Lecture 113 Activity

    Lecture 114 About Functional Programming

    Lecture 115 map

    Lecture 116 Activity for map

    Lecture 117 filter

    Lecture 118 Activity for filter

    Lecture 119 reduce

    Lecture 120 Activity for reduce

    Section 21: Thank you

    Lecture 121 Thank you

    Beginner python, Software Engineer, DBA,System Administrator, Also No Programming Experience is required