Author: Harry
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…
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…
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….
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…
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…
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…
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…
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…
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…