Completely Disable Windows 8.1 Help Tips

Samual Sam
Updated on 07-Jul-2020 08:54:43

735 Views

Earlier, beginner of Windows 8 and Window RT were unknown from the hot corners features. Whenever they move their cursor on the corner of the screen and got any pop-up, they thought that is a new feature discovery.Due to this consideration, Microsoft in Windows 8.1 introduced a new feature “Help Tips”. Now, moving cursor on the corner of the screen brings up the Help Tips.Using “Help Tips”, user can move to different points and get info and importance about those points. This feature is basically for users who are poor or beginner, not for knowledgeable users; they really like to ... Read More

Copy a Nested List in Python

Hafeezul Kareem
Updated on 07-Jul-2020 08:53:49

483 Views

In this tutorial, we are going to see different ways to copy a nested list in Python. Let's see one by one.First, we will copy the nested list using loops. And it's the most common way.Example Live Demo# initializing a list nested_list = [[1, 2], [3, 4], [5, 6, 7]] # empty list copy = [] for sub_list in nested_list:    # temporary list    temp = []    # iterating over the sub_list    for element in sub_list:       # appending the element to temp list       temp.append(element)    # appending the temp list to copy ... Read More

Ways to Delete Search History from Your Account

Samual Sam
Updated on 07-Jul-2020 08:52:48

1K+ Views

Now, all the time, people use internet to collect and share confidential and important data online. Importance and uses of online data needs protection and privacy. Our data is always is in risk, unless and until you unplug your system from all other devices.Sometime, we use public computer to access our Gmail, Yahoo mail, Facebook, Twitter, alert(“XSS”);, etc…, to download and upload some confidential data and to open our bank account detail. All things that you open on public computer save on history; can be open by any one other very easily.If, you want other people not to hack your ... Read More

Indices of Numbers Greater Than K in Python

Hafeezul Kareem
Updated on 07-Jul-2020 08:52:46

562 Views

In this tutorial, we are going to find the indices of the numbers that are greater than the given number K. Let's see the different ways to find them.A most common way to solve the problem is using the loops. Let's see the steps to solve the problem.Initialize the list and K.Iterate over the list using its length.If you find any number greater than K, then print the current index.Example Live Demo# initializing the list and K numbers = [3, 4, 5, 23, 12, 10, 16] K = 10 # iterating over thAe list for i in range(len(numbers)):    # checking ... Read More

Python Indexing a Sublist

Hafeezul Kareem
Updated on 07-Jul-2020 08:51:13

2K+ Views

In this tutorial, we are going to write a program that finds the index of a sublist element from the list. Let's see an example to understand it clearly.Inputnested_list = [[1, 2, 3], [4, 5], [6, 7, 8, 9]]OutputIndex of 7:- 2 Index of 5:- 1 Index of 3:- 0Let's see the simple and most common way to solve the given problem. Follow the given steps solve it.Initialize the list.Iterate over the list using the index.Iterate over the sub list and check the element that you want to find the index.If we find the element then print and break itExample Live ... Read More

Index Specific Cyclic Iteration in Python List

Hafeezul Kareem
Updated on 07-Jul-2020 08:49:32

1K+ Views

In this tutorial, we are going to write a program that cyclically iterates a list from the given Let's see the steps to solve the problemInitialize the list and index.Find the length of the list using len.Iterate over the list using the length.Find the index of the element using index % length.Print the element.Increment the index.It's a simple loop iteration. You can write it without any trouble. Let's see the code.Example Live Demo# initializing the list and index alphabets = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h'] start_index = 5 # finding the length length = len(alphabets) # iterating over ... Read More

Windows 8 Task Manager's Running Processes

Samual Sam
Updated on 07-Jul-2020 08:45:56

327 Views

If, you are finding a tool should be best to hold the overall PC’s performance. The Windows Task Manager is a great one.Task Manager is a task management and monitoring tool, shows the current status of programs, processes, and services run on Windows operating system. It comes in use to monitor the performance of the applications/services run on the system and to stop the applications/services that troubles the system performance.Over the internet, Task Manager can display the network status; means; how the network is functioning with other devices and users. Also, displays how many users are connected to the system, ... Read More

Sort a List of Strings in Python

Hafeezul Kareem
Updated on 07-Jul-2020 08:44:24

751 Views

In this tutorial, we are going to see how to sort a list of strings. We'll sort the given list of strings with sort method and sorted function. And then we'll see how to sort the list of strings based on different criteria like length, value, etc., Let's see how to sort a list of strings using list.sort() method. The sort method list is an insort. It'll directly sort the original list. Let's see the code.Example Live Demo# list of strings strings = ['Python', 'C', 'Java', 'Javascript', 'React', 'Django', 'Spring'] # sorting the list in ascending order strings.sort() # printing the ... Read More

Python Holidays Library

Hafeezul Kareem
Updated on 07-Jul-2020 08:41:43

2K+ Views

In this tutorial, we are going to learn about the holidays library. The holidays library will help to determine whether a particular is a holiday or not in different countries. We can only see the public holidays.Let's install the module with the following command.pip install holidaysAfter successfully installing the module follow the ways to see get the holidays information. see the holidays of India in the year 2020. You have to follow the below steps to get a complete list of holidays for India in 2020.You can find the country codes for the holidays here..Import the holidays' module.Instantiate the holidays.India() ... Read More

Grouping Similar Substrings in List using Python

Hafeezul Kareem
Updated on 07-Jul-2020 08:40:00

3K+ Views

In this tutorial, we are going to write a program that groups similar substrings from a list. Let's see an example to understand it more clearly.Inputstrings = ['tutorials-python', 'tutorials-c', 'tutorials-java', 'tutorials-javascript', 'python-1', 'python-2', 'javascript-1']Output[['tutorials-python', 'tutorials-c', 'tutorials-java', 'tutorials-javascript'], ['python-1', 'python-2'], ['javascript-1']]We are going to use the groupby method from itertools module to solve the problem. The groupby method will group all the similar string into an iter object. For the given list we have split the string with - and pass the first part of the string to the groupby method.Let's see the steps involved in solving this problem.Initialize the list ... Read More

Advertisements