Learn practical skills, build real-world projects, and advance your career
import re
import jovian
import numpy as np
import pandas as pd
import matplotlib
import matplotlib.pyplot as plt
import seaborn as sns
from wordcloud import WordCloud, STOPWORDS
from collections import Counter
from IPython.display import Image
import warnings
warnings.filterwarnings('ignore')

Import the zomato csv file

zomato_data = pd.read_csv("zomato.csv") 
type(zomato_data)
pandas.core.frame.DataFrame