import pandas as pd import numpy as npcustomer_details=pd.read_csv('customer_details.csv')customer_policy_details=pd.read_csv('customer_policy_details.csv')# 1. Add the column names to both datasets: # # i. Column Name for customer details table: ### customer_id, ### Gender,### age, ### driving licence present,### region…
Sayali Talekar
updated on 23 Nov 2022
Project Details
Leave a comment
Thanks for choosing to leave a comment. Please keep in mind that all the comments are moderated as per our comment policy, and your email will not be published for privacy reasons. Please leave a personal & meaningful conversation.
Other comments...
Read more Projects by Sayali Talekar (4)
Project 2 - EDA on Vehicle Insurance Customer Data
import pandas as pd import numpy as npcustomer_details=pd.read_csv('customer_details.csv')customer_policy_details=pd.read_csv('customer_policy_details.csv')# 1. Add the column names to both datasets: # # i. Column Name for customer details table: ### customer_id, ### Gender,### age, ### driving licence present,### region…
23 Nov 2022 09:51 AM IST
Project 1 - English Dictionary App & Library Book Management System
import jsonprint('Mainmenu \n\n 1.Add a word \n 2.Find the meaning \n 3.Update a word \n 4.Exit \n')while True: try: action=int(input('Please select from the given mainmenu(1,2,3,4):')) except ValueError : print('!!!!Please enter interger values only!!!') print('#'*50) else: if action==4: e=input('Are you sure you want…
23 Nov 2022 09:50 AM IST
Project 2 - EDA on Vehicle Insurance Customer Data
import pandas as pd import numpy as npcustomer_details=pd.read_csv('customer_details.csv')customer_policy_details=pd.read_csv('customer_policy_details.csv')# 1. Add the column names to both datasets: # # i. Column Name for customer details table: ### customer_id, ### Gender,### age, ### driving licence present,### region…
21 Nov 2022 02:04 PM IST
Project 1 - English Dictionary App & Library Book Management System
import sqlite3 as sql import tkinter as tk import tkinter.ttk as ttk import tkinter.messagebox as mb import tkinter.simpledialog as sd from tkinter import * root=Tk() root.title('.....Library Management Application.....') def Database(): global conn,cursor conn=sql.connect('simple.db') …
21 Nov 2022 01:42 PM IST