• Post category:StudyBullet-9
  • Reading time:5 mins read


Learn everything about Python in a simple step by step hands-on based approach

What you will learn

You will learn to install Python and Python Development Environment

You will learn about Variables, Naming Conventions, Data Types

You will learn about Loops, Conditional Statements

You will learn about Data Structures in python

You will learn about functions in python

Description

In this course you will learn everything about Python programming language.

The best part is you don’t have to have any previous programming experience to learn and start applying Python programming language.

We will start by learning the following:

1. You will learn to install Python and Python development environment

2. You will learn about variables and different naming conventions used for variable declarations.

3. You will learn about different Data Types in Python and when to use which data type.

4. You will learn about different types of Loops in Python and when to use which type of loop.

5. You will learn about Conditional Structure like If Else, If Else If in Python and when to use which type.

6. You will learn about Collections like List, Tuple and the differences between them.


Get Instant Notification of New Courses on our Telegram channel.


7. You will learn about Dictionary and how to use it

8. You will learn to use collections and loops and control structure together to implement different use cases

9. You will learn to write Functions in Python

10. You will learn to call one function with or without parameter from another function.

11. You will learn about Operators and Operands and perform different operations.

12. You will learn about precedence and how to use it in arithmetic operations.

13. You will learn about Type Casting one Data Type to Another Data Type.

14. We will also be creating multiple small projects for applying the concepts that we will learn.

English
language

Content

Introduction & Setup

Introduction & Environment Setup
Installing and setting up PyCharm editor

First Python Program & Variables

First Python Program in Pycharm
Running Python code from command prompt
Undertsanding variables with real world example
Handson for using variables
Naming convention for variables

Data Types & Operators

Int_Float Data Type
String_Boolean Data Type
Printing information on to console
Taking user input and storing and printing
Operators and Operands
Type casting from one type to another before performing operation
String methods and different operations

Conditional Statements

Conditional Operators Part -1
Conditional Operators Part 2
Precedence in Conditional Operators
Selection Statement Overview
Program Indentation & If Else
If-Elif-Else with Calculator Example
Nested If Else If with Example

Working with List & Tuple

List Data Structure Store and Get elements
List Data Structure Add Remove Elements
List Mutability with Example
Nested List and Accessing Elements
Tuple in Python with Example