Class 12th Python Pandas Notes NOTES Unit 1 – Introduction to Pandas (Part-I) Unit 1 – Introduction to Pandas (Part-I) 1. Introduction to Python Libraries What is a Python...
CLASS 12th PYTHON TEST MCQs – Data Handling: Pandas and Pyplot Multiple Choice Questions UNIT I: DATA HANDLING – PANDAS AND PYPLOT 1. To create an empty Series object,...
Class 12th IP (065) Computer Science Question Bank – Python, Pandas, Networking, SQL Python Fundamentals 1. Who developed Python? Python was developed by Guido van Rossum. 2. What is...
Class 12th IP (065) Practical 11 SOLUTION :- import pandas as pd import matplotlib.pyplot as plt Flight = pd.DataFrame({ 'Fname': ['Air india', 'Indigio', 'Spice Jet', 'Jet', 'Emirates'], 'Year': [2010,...
Class 12th IP (065) Practical 10 SOLUTION :- import pandas as pd import matplotlib.pyplot as plt Employee = pd.DataFrame({ 'Eno': ['E1', 'E2', 'E3', 'E4'], 'Ename': ['Mike', 'Jack', 'Thomas', 'Peter'],...
Write the code to create a DataFrame ‘df’ and answer the questions followed. SOLUTION Write the code to create a DataFrame ‘df’ and answer the questions followed. import pandas...
Table : Infant. Write a MYSQL Query SOLUTION Table : Infant. Write a MYSQL Query Table: Infant ItemCode Item DatePurchase UnitPrice Discount 101 Frock 2016-01-23 700 10 102 Cot...
Write a Python program to display the given Result using a BAR CHART SOLUTION Bar chart program import matplotlib.pyplot as plt # Line Plot RESULT[['Maths', 'Science', 'SST']].plot(kind='line', marker='o') plt.title("Result...
Write the code to create a DataFrame ‘df’ and answer the questions followed. SOLUTION Write the code to create a DataFrame ‘df’ and answer the questions followed. Pandas operations...