What is len in python?

What is len in python

The len is a built-in function in python. The len function returns the length (the number of items) of an object. The syntax of len() function One argument is required for the length function. The argument may be a sequence or collection sequence – list, string, bytes, tuple, range collection – dictionary, set Raises error … Read more

Length of the list in python

length of list in python feature image

Python list is a useful data structure used to store more than one element. In this article, we will discuss various ways to find the length of a list in python. We will discuss the following methods in detail and we will find out the faster method too. Calculate the list length using the loop … Read more

Programmers Day

Programmers day

Have you heard of programmers day or day of the programmer? The day of the programmer is celebrated on the 256th (hexadecimal 100th, or the 28th) day of the year. It is usually on September 13 in common years and September 12 in a leap year. This day is first officially recognized in Russia. Why … Read more

Ubuntu Task Manager

Ubuntu task manager feature image

Task manager is an essential utility of an operating system. Windows has an inbuilt task manager to monitor processes and system resources. Windows users normally use the Alt+Ctrl+Delete key to open task manager. In this article, we will discuss the Ubuntu task manager and how we can access it. Ubuntu has an in-built utility called … Read more

Stackoverflow from Terminal

Feature image

Stackoverflow is a very useful website for programmers and software professionals. It basically a question-answer website where we can ask questions about programming and share answers. In this article, we will discuss two methods to access StackOverflow from the terminal. How2 tool We can use how2 tool to access StackOverflow from the terminal. It supports … Read more

How to Check Weather Forecast in Terminal

Feature image

In this article, we will discuss a simple method to check weather forecasts in Windows and Linux terminals. We will use wttr.in web service to get the weather forecast. The wttr.in feature includes 3 days weather forecast from the current day Weather information for specific location, area code Automatic location detection based on your IP … Read more

How to Delete a Repository in Github?

Feature image

Managing GitHub repositories is important. As a part of cleaning the old/unused repositories in the GitHub account, we might want to delete a repository in Github. In this article, we will discuss step by step guide to delete a repository in Github. Follow the steps to delete a repository in GitHub. Sign in to your … Read more