Python 3


  • Introduction to Python

  • Python Interpreter

  • Comments in Python

  • Python Block Structure

  • print function

  • Escape sequence

  • Need of variables

  • Variables in Python

  • input function

  • Arithmetic operators

  • Python Power Operator

  • Floor division operator

  • Assignment Operator

  • Relational Operators

  • Logical Operators

  • Bitwise OR | Operator

  • Bitwise AND & Operator

  • Bitwise XOR ^ Operator

  • Bitwise Left Shift << Operator

  • Bitwise Right Shift >> Operator

  • Bitwise Ones Complement ~ Operator

  • if statement

  • if else statement

  • Nested if else statement

  • List Introduction

  • Indexing the list

  • Slicing the list

  • Length of a list

  • Concatenation of list

  • Append items to list

  • for loop | range() function

  • Break and Continue Statements

  • Tuple Introduction