Skip to content

Welcome to Python 🐍 course by Sunny

Watch Complete YouTube playlist here 📺 -

Subscribe to my channel 📺

Following is the outline of the course with respective videos and notes 📝 -

Introduction

Start thinking in Python 🧠 -


Installation 🔧

Detailed installation video 💻


Introduction to Python 🐍

  • What is programming language? 💻
  • What is Python? 🐍
  • Why Python? 🤔
  • What can we do with Python? 🔨
  • Drawback of Python? 😕

notes: Introduction to Python notes 📝


Getting Started 🚀

  • Hello world! 👋
  • Comments in python 💬
  • Errors / Exception in python ❌
  • The difference between Error and Exception with examples 🔍
    • Error ❌
    • Exception ⚠️
  • Explore about the above error messages in chatGPT or Bing Chat 💬

notes - Getting started notes 📝


Variables 🔤

  • Define a Variable 🔍
  • Rules for defining the variables in Python 📏
  • Conventions for defining the variables in Python 📝
  • Features for defining the variables in Python 🔍
  • More real world examples 🌎

notes - Variable notes 📝


Data Types 📊

  • Introduction to data types? 🔍
  • Real-life example from school days 🏫
  • Real-life example from Amazon E-commerce website 🛒
  • Hands-on using Python for the above examples 💻

notes - Data Types notes 📝 | Data Types Hand written notes 📝


User input, data type casting and conversions

  • User-input: Python's inbuilt input method? 📥
  • Why we need type conversions 🔍
  • Handling various data-types and it's conversion 🔧
    • Implicit type conversions aka Data type conversions 🔄
    • Explicit type conversions aka Data type casting 🎛️

notes - Data Types notes 📝


Numbers 🔢

  • Integers 🔢
    • Large integers 🔍
  • Floats 🔟
    • Large float values 🔍
    • Scientific notation 🔬
  • Complex numbers 🔢
  • Inbuilt functions/methods for numbers 🔧
    • abs (absolute value) 🔍
    • divmod (quotient and remainder) 🔍
    • pow (power) 🔍
    • round (rounding) 🔍

notes - Numbers notes 📝