Posts

Showing posts from December, 2023

Featured Post

BUILD A TODO LIST IN PYTHON

Image
Build a TODO List in Python Overview The objective is to build a todo list to which we can add items, remove the added items, edit the items and even if required, delete out the entire list itself. We will learn here step by step, how to build the todo list with the above  CRUD (Create, Remove, Update/edit, and Delete ) features.  This is a CRUD list  app  that we are building as we can Create, Remove, Update items in the list and Delete the entire list itself. We will be using Python3 to build this Project. Importing os and time We import time to let the screen pause for a while before clearing  and we import os to clear the screen . Initializing the list We initialize the todo list with an empty list as there are not items added yet to the list and this is represented in the code aby using an empty square braces   toDoList = [] Defining the print list  The def keyword is used to define a function in python. In the below code, we define the function called printList(). When we define

Build a Simple Exam Grade Calculator in Python

Image
 Build a Simple Exam Grade Calculator in Python INTRODUCTION This blog tutorial will teach you how to build a simple examination grade calculator using Python, in an easy to understand manner with full source code and in depth code explanation with detailed explanation so that you will also understand the main concepts of Python that are applied here to build this app. This Python tutorial is for absolute beginners who are learning Python and if you are in an advanced or intermediate phase of  doing Python, you may find it boring to learn this project! CORE CONCEPTS OF THE PROJECT Here, you are going to learn the steps involved in building an exam grade calculator app using Python and the main concepts of this project is having the following information, that is, what is the name of the examination or subject exam, what is the score of the candidate, what is the full score or total marks expected for the respective subject or examination and then, based on the exam score of the candida