Posted in allcategorites

Python Programs on Functions

Continue Reading
Posted in allcategorites php projects web projects

Blood Bank Management System Project In PHP

This tutorial is going to be an exciting and thrilling one as we are going to create a blood donation and blood Bank Management System…

Continue Reading
Wishing Happy New Year 2023 in Python Turtle
Posted in allcategorites python turtle

Wishing Happy New Year 2023 in Python Turtle

Guess what’s this time for? Yes, this is the time to say Hello to 2023! 2023 is approaching and if you want to wish Happy…

Continue Reading
Posted in allcategorites programs in python python simple programs

Retrieve a module path in Python: 5 Methods

Now, you can use this ‘a_module’ inside your program but do you know where Python looks for modules or retrieve a module path? Let’s check….

Continue Reading
Posted in allcategorites programs in python

How to get a function name as a string in Python?

Today, we will see the two most used methods to get a function name as a string in Python. Using __name__ to get a function…

Continue Reading
Access dictionary values in Python | dict[key] vs dict.get(key)
Posted in allcategorites programs in python python simple programs python-short-tutorial

Access dictionary values in Python | dict[key] vs dict.get(key)

dict[key] and dict.get(key) are two ways to access dictionary values in Python. The difference is that dict.get(key) takes two arguments while dict[key] takes one argument…

Continue Reading
Posted in allcategorites programs in python

Ternary operator in Python: 6 possible methods

There are many ways to make a ternary operator in Python but there exists a one-liner if-else statement that is usually called the ternary or…

Continue Reading
Posted in allcategorites programs in python

Get the length of a list in Python

Lists in Python are one of the most commonly used built-in data structures. Many times we need to find the length of a list in…

Continue Reading
Posted in allcategorites html css javascript project web projects

Tip Calculator in HTML and JavaScript

Today, we will be making Tip Calculator in HTML and JavaScript. We will be using HTML CSS JavaScript to get the job done. For styling…

Continue Reading
Posted in python very small program assignments

Min and max values in an array in JavaScript

Problem Statement: You are given an array, you need to find and print the minimum and maximum values. Code to find Min and max values…

Continue Reading