Java Program to Reverse Bits of a Number

By Kunal Kamble

Hello friends welcome to CodeSpeedy. In this tutorial, we will learn to reverse the bits of a number in Java. Given a number say N we have to reverse the bits of the number and pri.... Read More

Python Program for longest ordered subsequence of vowels

By Abul Hassan

In this tutorial, we are going to write a Python program to get the longest ordered subsequence of vowels. Input: “aaeeiaaiieiou” Output: [‘a’, ‘aR.... Read More

How to add a line break inside a table cell in LaTeX?

By Parvez Akhtar Pasha

In this tutorial, you will learn how to add a line break inside a table cell in LaTeX. Generally, we use thisĀ  \\ to add a line break in LaTeX. But with the tabular environment, y.... Read More

Contingency Table in Python

By Abul Hassan

In this module, we will discuss the Contingency Table in Python. When there is only one variable is involved it is easy to analyze those problems. Basically, the Contingency Table .... Read More

Rearrange columns in Dataframe in Python – Pandas

By Anuj Gupta

In this tutorial, we will learn how to Rearrange columns in Dataframe in Python. You are given a dataframe. Your task is to reorder/rearrange the data columns. There are many metho.... Read More

Resolve: ImportError: No module named ‘Tkinter’

By Yathartha Rana

This error generally occurs because of a missing Tkinter module in your Python. Let’s see how you can resolve it in simple steps. Spelling Mistake Generally, with Python3, th.... Read More

Check if a string is in another string in Python

By Yathartha Rana

In this tutorial, we will learn various methods through which you can check whether a string is in another string in Python, also called a substring. Using in operator In this meth.... Read More

Create World Maps in Python using Folium

By Sahil Shah

Today, in this Blog we will explore the basics of using the Geospatial data and plot a World Map using Folium. Creation of World Maps using Folium Folium Installation To get starte.... Read More

Related Posts