FuzzyWuzzy Python Library

Pradeep Elance
Updated on 23-Oct-2019 08:01:52

781 Views

In this tutorial, we are going to learn about the FuzzyWuzzy Python library. FuzzyBuzzy library is developed to compare to strings. We have other modules like regex, difflib to compare strings. But, FuzzyBuzzy is unique in its way. The methods from this library returns score out of 100 of how much the strings matched instead of true, false or string.To work with the FuzzyWuzzy library, we have to install the fuzzywuzzy and python- Levenshtein. Run the following commands to install them.pip install fuzzywuzzyIf you run the above command, you will the following success message.Collecting fuzzywuzzy Downloading https://files.pythonhosted.org/packages/d8/f1/5a267addb30ab7eaa1beab2 b9323073815da4551076554ecc890a3595ec9/fuzzywuzzy-0.17.0-py2.py3-none-any.whl Installing collected ... Read More

Facilitate Titlebar Text and Icon in Firefox 29

Samual Sam
Updated on 23-Oct-2019 08:01:15

126 Views

As we all know that, Mozilla Fierfox 29 has come up with new Australis UI, available in the Nightly Builds of Firefox. There are many big changes in this version, like; orange Firefox button has been removed from titlebar and has been replaced by a new Menu button placed at the right corner of toolbar. This button removal has also removed some basic features (titlebar text and icon) of Firefox which was coming in used regularly.This change has become a big issue for users who regularly use Firefox for their work.From the old version of Firefox, user can disable the ... Read More

Print Anagrams Together in Python Using List and Dictionary

Pradeep Elance
Updated on 23-Oct-2019 07:52:49

729 Views

In this tutorial, we are going to write a program which finds and prints anagrams using list and dictionary. We have different approaches to every problem. Try to write code without following the tutorial. If you are not able to generate any ideas to write logic, follow the below steps.Algorithm1. Initialize a list of strings. 2. Initialize an empty dictionary. 3. Iterate through the list of strings.    3.1. Sort the string and check if it is present in the dictionary as key or not.       3.1.1. If the sorted string is already present dictionary as a key ... Read More

Why Bing Image Search is Better than Others

Samual Sam
Updated on 23-Oct-2019 07:51:56

413 Views

Worldwide, internet lovers every day and every time prefer to use Google Search to search their stuffs over any other alternative search engine, but when those internet lovers search for quality images than “Bing Image Search” is best.In case of image quality, Microsoft also feels that Bing Image Search is better than any other search engine. But it does not mean that Google can’t give expected results at all. From past so many years, Google is in top and its image search results are pretty good too.In this article, you will see what new features Bing provides that make it ... Read More

CoolNovo: A Web Browser Similar to Google Chrome

Samual Sam
Updated on 23-Oct-2019 07:49:36

337 Views

Google Chrome is one of the lightest and user-friendly web browsers among other web browsers, and it has become better than other browser because of its customization feature that makes it more advance and friendly by adding more feature as per individual requirements. Chrome is created on the open-source project Chromium that makes it source code eagerly accessible to anyone. So, people who are interested in developing a browser can make use of this source-code and come up with their Chrome-like version. Also, browsers like; Comodo Dragon, SRWare and many-more are Chromium-based web browsers.To compete with Google Chrome, Maple Studio ... Read More

Print First M Multiples of N Without Using Any Loop in Python

Pradeep Elance
Updated on 23-Oct-2019 07:48:16

760 Views

In this tutorial, we are going to write a program to find out m multiples of a number n without using loops. For example, we have a number n = 4 and m = 3, the output should be 4, 8, 12. Three multiples of four. Here, the main constraint is not to use loops.We can use the range() function to get the desired output without loops. What is the work of the range() function? range() function returns a range object which we can convert into an iterator.Let's see the syntax of range().Syntaxrange(start, end, step)Algorithmstart - starting number to the ... Read More

Microsoft Translator Bookmarklet

Samual Sam
Updated on 23-Oct-2019 07:45:41

236 Views

Sometime, user requires data from the website that are not very much understandable or not in your native language, makes difficult for user to get the essential data from that website.In this situation, online translator websites like; Google translate and Babel fish help us to understand those websites by coping the website URL the one you want to translate and paste it into the online translator websites then click on buttons, links, etc.It is really great to translate the website in a single click or in a single step. Now it is possible.Microsoft translator bookmarklet for those web sites that ... Read More

Troubleshoot Download Issues from the Internet

Samual Sam
Updated on 23-Oct-2019 07:43:22

321 Views

Worldwide, user uses famous browsers like; Internet Explorer, Firefox, Google Chrome, Opera or other browsers on Window 7/8 Operating System to download, save and run the files. If, user is unable to download, save and run the file or while downloading (clicking on download link) nothing happens or it shows error, or at the time of saving the file “Save As” dialog box appears and then quickly disappears, automatically.This article will help you in protecting the system from unsafe file.Internet Explorer’s Attachment Manager protects users system while downloading unsafe attachments file and Internet downloads by recognizing the file type and ... Read More

Restrict Access to Vital Information in Internet Explorer

Samual Sam
Updated on 23-Oct-2019 07:38:33

177 Views

People who use Internet Explorer web browser most, for them we are revealing a “hidden secret mode” of Internet Explorer web browser. This mode provides an extra layer of security to the web browser that prevent browser from attackers by installing software or modifying system settings if they did not manage to run exploit code. It restricts users (attackers) to access menus, toolbar buttons, Internet options, etc in the browser window. You can call this a most restricted mode (Guest mode) of Internet Explorer.Internet Explorer’s “Full Screen Mode”, a built-in mode that functions like a guest mode in Internet Explorer. ... Read More

Count Occurrences of a Word in a String using Python

Pradeep Elance
Updated on 23-Oct-2019 07:36:17

4K+ Views

In this tutorial, we are going to write a program that counts the number of times a word occurs in the string. You are given the word and a string, we have to calculate the frequency of the word in the string.Suppose we have a string I am a programmer. I am a student. And the word is. The program that we are going to write will return a number 2 as the word occurs two times in the string.Let's follow the below steps to achieve our goal.Algorithm1. Initialize the string and the word as two variables. 2. Split the string ... Read More

Advertisements