Python Programming

Python Training in Kathmandu, Nepal

Duration: 1 Month ( 45 Hrs. )
Career: Python Developer
Training Mode: Both, Physical & Live Online Classes
Master Your Skills
Become a Professional
Build a Career!
Description

Python Training in Nepal

Broadway Infosys offers special Python training course in Nepal as it is considered as one of the popular programming languages that is attracting large pool of developers worldwide. The giants like Google, Yahoo and Amazon are using Python for their special projects and this has further inspired many developers to learn this programming language in Nepal

Course Highlights

Python training course has been designed for aspiring developers with some level or no prior programming experience. The courses range from basic to advanced level. The course is all about familiarizing the trainees with simpler and smarter ways to develop interactive web applications using Python. At the end of the training, students need to undertake a project work to develop interactive application using Python.

Syllabus Outline

Python Training course covers the following (but not limited to) syllabus:

  • Introduction to Python
  • Understanding of variables and identifiers, standard types and operators
  • Decision making, sequential data types, dictionaries, loops and functions
  • Modules and packages, object oriented Python
  • File processing and Exception Handling
  • Advanced Python
  • Project work on Python
  • Project Evaluation and Feedback from experts

Benefits

Benefits of Python Training in Nepal

  • High demand of Python developers
  • Environment to prove oneself in a competitive environment
  • Quick results for projects that are popular in Nepal
  • Massive internship and job opportunities for up-and-coming Python developers

Benefits of Python Training at Broadway Infosys 

  • Highly qualified and experienced Python instructors
  • Availability of sufficient training resources
  • Several Python developers trained at Broadway already working in top companies
  • Proficiency in dealing with Big Data analytics
  • Regular interaction among growing community of Python developers
  • Familiarizing with code efficiency in developing wide range of applications using Python

As the leading companies around the world have started using Python for their projects the developers with Python skills can expect plenty of opportunities to work in innovative and high paying projects. Please register yourself for our upcoming Python training session to expand your programming portfolio. Our instructors are excited to guide you along the journey of Python Programming.

Python Training - Outlines
    Python Programming Language
  • Installation

  • Python version and pip package manager

  • Introduction to Google Colab, Jupyter Notebook / IDE

    • Introduction to markdown
  • Python Program and statements

  • Python Arithmetic Operators

    • Using Python as calculator
  • How to define a variable name and Variable Naming convention in Python

  • Operator, Operands, and Operator Precedence

  • Changing and updating variable values in Python

  • Assigning multiple values to multiple variables

  • Data types in Python

  • Number data type: int, float, complex

    • Number data type
    • Taking input from the users
    • Type casting and type checking
    • Type validation
    • Number type with conditionals
  • Conditions and Recursion

    • Modulus operator
    • Boolean expressions
    • Logical operators
    • Conditional execution
    • Chained conditionals
    • Nested conditionals
    • Recursion
    • Stack diagrams for recursive functions
    • Infinite recursion
  • Iteration

    • Multiple assignments
    • Updating variables
    • The while statement
    • Break
    • Debugging
    • For loop
  • Python string

    • Introduction
    • Single line vs multiline string
    • Indexing
    • slicing
    • len()
    • Loop: for loop using range()
    • Loop with conditionals
    • continue vs break
    • characters vs substrings
    • Immutable data type
    • String methods: .replace(),.lower(), .upper(),.title() .lstrip(), .rstrip(), .strip(), .split(), .join(), .isdigit(), isupper(), islower(), .format()
  • Python Built-in data types

          List

    • Introduction to list
    • Indexing/Negative indexing
    • Slicing
    • looping & conditionals, len()
      • Different types of for loop ,while loop, for loop vs while loop
    • list of list and nested loop
    • Membership operators: in , not in
    • Mutable vs Immutable data type with exmaple
    • List methods: .insert(), .append(), .remove(), .pop(), .sort(), .extend(), .remove(), .sort()
    • List Comprehension
    • with if and else

    Tuple

    • Introduction to tuple
    • Indexing , slicing, looping
    • list vs tuple
    • Typecasting list -> tuple and tuple ->list
    • tuple unpacking

    Set

    • Introduction to set
    • .remove() , .add(), .discard() in sets
    • Type conversion
    • Set operation in Python : union, intersection, difference
    • Frozenset vs set

    Dictionary

    • Introduction
    • disctionary methods: .get(), .update(), .keys(), .values(), .pop()
    • Loop and dictionary comprehension
    • Nested Dictionary
  • None type

    • Identity Operators
  • Python Functions

    • Introduction and syntax: Why function is necessary
    • Function definition and function call
    • arguments/parameters in function
    • return statement in function
    • returning multiple value from function
    • Handling multiple return values
    • Default argument vs non default argument and why it is necessary
    • global and local variables
    • *args vs **kwargs
    • Introduction to Recursion and Recursion tree
    • pass keyword
  • OOP in python

    • Class and Objects
    • Class attribute and Object attribute
    • Initilizing object attribute
    • __init__()
    • Self keyword and its importance
    • Inheritance and its types
    • Single Inheritance
    • super() method
    • Mulitple Inheritance
    • Multi-level Inheritance
    • Abstraction and Access specifiers
    • Polymorphism
    • + and len()
    • Operator overloading using Dunders/magic method (user defined class)
    • function overriding
    • Encapsulation
  • Introduction to Exceptions

    • Understanding exceptions in Python
    • Types of exceptions and their meaning
    • Importance of exception handling
    • Handling Exceptions
      • Using try-except blocks to handle exceptions
      • Catching specific exceptions
      • Handling multiple exceptions
      • Using the finally clauses
    • Raising Exceptions
  • File Handling

    • open()
    • modes:
      • read : ‘r’
        • read(), readline(), readlines()
      • write: ‘w’
      • append: ‘a’
      • create: ‘x’
      • Comparison of append and write modes
    • File handling on CSV files.
    • DictReader and DictWriter
    • File handling with exception handling
  • Others

    • Lambda function/Annynomous Function:
      • map() , filter()
    • os library
    • random library
    • math library
  • Introduction to SQL in python

    • Creating database
    • Defining table structure with SQL statements and Specifying column names, data types, and constraints
    • Inserting new records into tables using SQL INSERT statements
    • Retrieving data from tables using SQL SELECT statements
    • Modifying existing data in tables using SQL UPDATE statements
    • Removing tables data  using SQL DELETE statements
    • Filtering data using the WHERE clause in SQL SELECT statements
  • Introduction to git and Github

    • Installing Git Bash
      • Overview of Git Bash
      • Installation
    • Creating a GitHub Account
      • Sign up for a GitHub account
      • Set up profile
    • Creating an Empty Repository
      • Create a new empty repository on GitHub
    • Initializing a Git Repository Locally
      • Initialize a Git repository on your local machine using Git Bash
    • Tracking Files
      • Add files to the staging area
      • Commit changes to the repository
    • Configuration of Global User Information
      • Configure your global user.name and user.email for Git
    • Branching (main)
      • Understand the concept of branches
      • Work with the default main branch
    • Adding a Remote
      • Connect your local repository to the remote repository on GitHub
      • Configure the remote repository URL
    • Pushing Changes
      • Push your local changes to the remote repository on GitHub
    • Cloning
      • Clone a repository from GitHub to your local machine using Git Bash
    • Creating a New Branch
      • Create a new branch for making changes
      • Switch between branches
    • Pushing Changes to a Branch
      • Push your changes to the remote repository on a specific branch
  • Pandas

    • Introduction to Pandas
    • DataFrame Data Structure
    • Reading and writing csv files using DataFrame
    • Manipulating DataFrame
  • Basic Data Visualization

    • Introduction to Matplotlib and Seaborn and plotly
    • Basic plotting using any of these library
  • Project Work (one of the following ):

    • Web Scraping project + Databse
      OR
    • Any desktop application: eg. Data Entry application
Upcoming Class Schedule
21 Apr 2024 09:30 AM - 11:00 AM
21 Apr 2024 04:30 PM - 06:00 PM
28 Apr 2024 06:30 AM - 08:00 AM
28 Apr 2024 10:30 AM - 12:00 PM
28 Apr 2024 11:00 AM - 12:30 PM
28 Apr 2024 12:00 PM - 01:30 PM
28 Apr 2024 03:00 PM - 04:30 PM
30 Apr 2024 08:00 AM - 09:30 AM
12 May 2024 06:30 AM - 08:00 AM
12 May 2024 06:00 PM - 07:30 PM

Quick Inquiry


    Vacancy