Remember, you should have spent a good amount of time in understanding how to upload a ipython notebook on https://try.jupyter.org/ website. Learn how to switch to python 3 kernel. All the excercise are for python 3. Learn the basics of iPython notebook about cell.
Type the following text into the cell below in the notebook and run. In case of any error try to debug it.
print("Hello World!")
print("Hello Again")
print("I like typing this.")
print("This is fun.")
print('Yay! Printing.')
print("I'd much rather you 'not'.")
print('I "said" do not touch this.')
In [ ]:
You should see this below the cell:
Hello World!
Hello Again
I like typing this.
This is fun.
Yay! Printing.
I'd much rather you 'not'.
I "said" do not touch this.
If you have an error, it will look like this:
File "
It’s important that you can read these, since you will be making many of these mistakes. Even I make many of these mistakes. Let’s look at this line by line.
Each exercise also contains Study Drills. The Study Drills contain things you should try to do. If you can’t, skip it and come back later. For this exercise, try these things:
From now on, I won’t explain how each exercise works unless an exercise is different.
NOTE: An “octothorpe” is also called a “pound,” “hash,” “mesh,” or any number of names. Pick the one that makes you chill out.