Learn Complete Python In Simple Way
- Offered byUDEMY
Learn Complete Python In Simple Way at UDEMY Overview
Duration | 114 hours |
Total fee | ₹3,699 |
Mode of learning | Online |
Official Website | Go to Website |
Credential | Certificate |
Learn Complete Python In Simple Way at UDEMY Highlights
- Earn a certificate after completion of course from Udemy
- Learn from 37 downloadable resources
- Get full lifetime access of the course material
- Comes with 30 days money back guarantee
Learn Complete Python In Simple Way at UDEMY Course details
For Anyone looking to Learn Python Language In detail
For Anyone looking to clear Python Interviews
For Anyone looking to clear Python Certification
For Anyone to get perfection on day to day coding requirements on Python Concepts
Language Fundamentals
Operators
Input and Output Statements
Flow Control
Pattern Applications
Strings
Dictionary Data Structure
Functions
Modules
Packages
Object Oriented Programming (OOPs)
Exception Handling
Logging Module
Embark on your programming journey with this beginner-friendly course designed to teach you Python from the ground up
Whether you’re new to coding or looking to enhance your skills, this course provides a clear, structured approach to mastering Python
Learn Complete Python In Simple Way at UDEMY Curriculum
Introduction to Python
What is Python and Father of python
Easiness of Python when compared with Other Languages
Why the name 'Python'
Python as All Rounder
Where we can use Python
Features of Python: Part-1
Features of Python: Part-2
Features of Python: Part-3
Features of Python: Part-4
Features of Python Summary
Limitations and Flavors of Python
Python Versions
Python Installation & Various ways to run python program
Python Installation
How to Write and Run python code on IDLE
How to Write and Run python code by using NotePad
Install Editplus and Run first Python Program
Language Fundamentals
Python Identifiers
Python Reserved Words
Data Types Introduction
Data Types: int data type
Data Types: Base Conversion Functions
Data Types: float data type
Data Types: complex data type
Data Types: bool data type
Data Types: str data type representations by using single,double and triple quot
Data Types: str data type - positive and negative index
Data Types: str data type - Slice Operator
Data Types: str data type - Slice Operator Applications
Data Types: + and * operators for str data type
Type Casting: introduction and int() function
Type Casting: float() and complex() functions
Type Casting: bool() and str() functions
Type Casting: Summary
Fundamental Data Types vs Immutability : Meaning Of Immutability
Fundamental Data Types vs Immutability : Need Of Immutability
Immutability vs Mutability
Python Data Types: List data type
Python Data Types: Tuple data type
Python Data Types: Set data type
Python Data Types: FrozenSet
Python Data Types: Dict
Python Data Types: range
Python Data Types: bytes and bytearray
Python Data Types Summary
None Data Type
Escape Characters,Comments and Constants
Python Operators
Python Operators Introduction
Arithmetic Operators Part-1
Arithmetic Operators Part-2
Arithmetic Operators Part-3
Relational Operators Part-1
Relational Operators Part-2
Equality Operators
Logical Operators For Boolean Types
Logical Operators For Non-Boolean Types
Bitwise Operators
Bitwise Complement Operator(~) Part-1
Bitwise Complement Operator(~) Part-2
Shift Operators:<< and >>
Assignment Operator
Ternary Operator Part-1
Ternary Operator Part-2
Special Operators:Identity & Membership Operators
Operator Precedence
Basic Idea About Python Module
Various Possible Ways to Import a Module
Important Functions and Variables of math Module
Input and Output Statements
Agenda and Difference between raw input() and input() functions
Demo Program-1 to Read input data from the keyboard
Demo Program-2 to read input data from the keyboard
Reading Multiple Values from the keyboard in a single line
eval() function
Command Line Arguments Part-1
Command Line Arguments Part-2
Important Conclusions about Command Line Arguments
Output Statements : print() function and sep attribute
Output Statements : end attribute
print(object) and with replacement operator
print() with formatted string
Python Flow Control: Part 1
Introduction and Indentation
if-elif-else statement and applications
Finding Smallest and Biggest Number by using if-elif-else Statement
Digits to Words Conversion Programs
Iterative Statements: for loop
Applications by using for loop
While Loop and Applications
Infinite Loops and Nested Loops