0% found this document useful (0 votes)
3 views2 pages

Internship Assignments

The document outlines a series of programming tasks and exercises dated from August 17 to September 1, 2023. These tasks include creating functions in Python, working with NumPy and pandas, downloading datasets from Kaggle, and visualizing data using matplotlib. The exercises cover a range of topics such as variable arguments, array manipulation, and data visualization techniques.

Uploaded by

Sami Sanadi
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views2 pages

Internship Assignments

The document outlines a series of programming tasks and exercises dated from August 17 to September 1, 2023. These tasks include creating functions in Python, working with NumPy and pandas, downloading datasets from Kaggle, and visualizing data using matplotlib. The exercises cover a range of topics such as variable arguments, array manipulation, and data visualization techniques.

Uploaded by

Sami Sanadi
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

Date: 17/08/23

1. Write a program to create a function that takes two arguments, name and age, and print their
value.
2. Write a program to create function func1() to accept a variable length of arguments and print
their value.
3. Write a program to create function calculation() such that it can accept two variables and
calculate addition and subtraction. Also, it must return both addition and subtraction in a
single return call.

Date: 21/08/23

1. Import numpy as np and print the version number.


2. Create a 1D array of numbers from 0 to 9.
3. Extract all odd numbers from arr

Date: 22/08/23

1. Consider 10 elements and split it using hsplit and vsplit method.


2. [[1,3,4,5][2,3,4,6][8,7,5,4][4,8,9,10]]convert it into 2D array.

Date: 23/08/23

1. Create a pandas series from array


2. Create a pandas series from dictionary 3.
3. Create pandas series from list 4.
4. make a pandas Data Frame with two-dimensional list

Date: 24/08/23

1. Given Quiz On Pandas

Date: 28/08/23

1. Download Customer.csv from Kaggle.


2. Use groupby() to list the products sold.
3. Use groupby() to list quantity sold againt each product.
4. List the product which are not yet sold.

Date: 29/08/23

1. Write a Python programming to create a pie chart of the popularity of programming


Languages. Sample data: Programming languages: Java, Python, PHP, JavaScript,C++
Popularity: 22.2, 17.6, 8.8,7.7,6.7 perfom the bar graph and piechart use groupby method.
Date: 31/08/23

1. Write a Python program to download and display the content of robot.txt for
en.wikipedia.org.

Date: 01/09/23

1. Download Company_sales_data.csv from Kaggle


2. And Perform all types of graphs in matplotlib

You might also like