-
Notifications
You must be signed in to change notification settings - Fork 0
Python Notebooks & Exercises
Notebooks
[DataStructures](https://github.com/HarshaVardhanBabu/TutorialMaterial/blob/master/DataStructures.ipynb)
[Practice Material I](https://github.com/leriomaggio/python-in-a-notebook)
[Practice Material II](https://github.com/iitmcvg/Python-Exercises) (Exercise I will be sufficient for now.)
Project - I
[Identifying Prime Number](https://github.com/HarshaVardhanBabu/TutorialMaterial/blob/master/Project%20--%20Python%20Basics.ipynb)
-
Write the code to determine a given number is prime or not
-
[If … else …](https://docs.python.org/3/tutorial/controlflow.html#more-control-flow-tools)
-
[Defining Functions … def ](https://docs.python.org/3/tutorial/controlflow.html#defining-functions)
Try these small exercises out !!!
Assume data whenever required
-
Create a multiplication table given a number.
-
Create dictionary with keys as number and value as a cube of the number.
-
Create a string and convert it to lower,upper,title case and print those.
-
Given a list, print out the unique elements from the list.
[Quick Start Numpy](https://docs.scipy.org/doc/numpy/user/quickstart.html)
Plot the following functions . y = x^2 (square of x) . y = x^3 (cube of x)
Try plotting on the same axis and two different axes.
Hint: Use plt.subplots(1,1) for one axis and plt.subplots(1,2) for two axis and this returns axes array
💣 Hands on Pandas 💥