Topics Covered:
1- Introduction to Python – print(), input(), Comments, Variables, Built-in Data Types.
2- Basics of Python – Strings and its methods, Python Booleans, Operators (Arithmetic, Logical, Comparison, Assignment, Identity, Memebership, Bitwise), Slicing and Indexing.
3- Python Data Structures:
3.1- Lists – Access, Change, Add, Remove, Loop, Sort, Copy, Join, List Methods, List Comprehension.
3.2- Tuples – Access, Update, Unpack, Loop, Join, Tuple Methods
3.3- Sets – Access, Add, Remove, Loop, Join, Set Methods
3.4- Dictionary – Access, Change, Add, Remove, Loop, Copy, Nested Dictionaries, Dictionary Methods.
4- Python Conditional Statements – IF, ELIF, ELSE
5- Loops in Python:
5.1- For Loops – Introduction, break, pass, Nested Loops
5.2- While Loops – Break, Continue, Else, Conditional Statements in While Loops.
6- Python Functions – Creating, Calling, Arguments, Arbitrary Arguments, Keyword Arguments, Arbitrary Keyword Arguments.
7- Python Classes and Objects
7.1- Introduction – Creation, init (), str (), Object Methods, SELF Statement, PassStatement
7.2 Inheritence – Creation, Parent Class, Child Class, init (), super(), Inheritence Methods.
8- Miscellaneous – Datetime, RegEx, String Formatting, TRY/EXCEPT.