ICP3 - PallaviArikatla/Python GitHub Wiki

TITLE: Object oriented Python

Software Required: Pycharm and Python 3/ Python 2.

QUESTION 1: Create a class Employee and then do the following

**QUESTION 2: Web scraping

Write a simple program that parse a Wiki page mentioned below and follow the instructions:https://en.wikipedia.org/wiki/Deep_learning**

Check for BeautifulSoup package before initiating, in it's absence install the package.

The generated output list file where the text get stored in:

**QUESTION 3: Numpy

Using NumPy create random vector of size 20 having only floating the range of 1-20. Then reshape the array to (4 by 5). Then replace the max in each row by 0(axis=1). **

Check for NumPy package before initiating, in it's absence install the package.

We get three vectors in the output. The original array, Re-Shaped array, and Replaced array as follows