Python Classes – Objects – Modules & Functions Let us see Python Classes, Objects, Modules and Functions Classes and Objects Modules Functions Watch on YouTube: https://youtu.be/YUz1XDbJDlI Classes & Objects Python is an object-oriented programming language. Almost everything in Python is an object, with its properties and methods. A Class is
Tag Archives: learning python

Python Decision making and Loops Let us see about Python decision making and loops Decision making Loops Watch on YouTube: https://youtu.be/A2qoypUV-ZE Decision making Decision making evaluates multiple expressions which produce TRUE or FALSE as an outcome. Which defines action to take and what statements has to execute when the outcome is TRUE

Python type casting and operators Let us see about Python type casting and operators. Python Type casting Python Operators Watch on YouTube: https://youtu.be/cit6jKwKY1o Python type casting We know Python is not strict with the data type declaration of variables. What makes the need of type casting? Let us see below

Python comments and variables Let us see about Python comments and variables which covers the below topics. Python Comments Single line comment End of the line comments Multi line comments using # (Pound or Sharp) Multi line comments using “”” (3 double quotes a.k.a Multi line string) Variables Declaring variables

Python Syntax and Data types Today we are going to see about Python Syntax and Data types which consist of the following Python Syntax Indentation in Python Best practices while writing Python program Data types (In build data types in Python) Code Repo : https://git.io/JtUqQ Slides : https://git.io/JtUZM In case