Posts

Showing posts from December, 2022

Lesson 1: Setting up Python and VS Code

Image
Lesson 1: Setting up Python and VS Code Overview Here in this lesson, we are gonna be downloading, installing and configuring Python and VS Code. We will be installing plugins or extensions which would make programming python for us much easier. Introduction to Python Python is a dynamically typed, General Purpose Programming Language that supports an object-oriented programming approach as well as a functional programming approach. Python is also an interpreted and high-level programming language. It was created by Guido Van Rossum in 1989. We need not worry about what is Object Oriented Programming or what is a high level language yet, we will be discussing that in future lessons. Introduction to VS Code Visual Studio Code is one of the free source code editors used for Linux, Windows, and macOS. Several features are supported by Visual Studio Code, such as syntax highlighting, snippets and  intelligent code completion. The users have the option to change the keyboard shortcuts, ...

Lesson 2: Modules and pip in Python

Image
 Lesson 2: Modules and Pip in Python Overview Here in this lesson, we will learn about modules and pip in Python. We will be getting to know, how modules make our wok a lot easier and how to install and use them. We wont be writing any code yet, but we will be doing some theory-practical today. What are modules? To understand modules, we may take help from the invention of wheel. Lets try to understand it with the help of a story. Suppose there is a man, who is very smart, very intelligent and has a high capacity to think, but he is a bit dumb. He has taken upon himself the task of making a motorcycle which would be super fast and full of features. now he starts the work by inventing the wheel. Now here, you may think that why is he inventing the wheel again and why is this story relevant to programming? Let me explain you. The man who is being talked about is you! Suppose you want to build something like a voice assistant like Alexa. Now you will probably be dividing the task...