Lesson 1 : Language, Numbers and Operators
# Module 1 is setup and testing the Installation
# Step 1 : Command Prompt type following to check python install
>>python --version
# Step 2 : Starting Jupyter Notebook, use following command and then go to the browser.
>>jupyter notebook
>>jupyter notebook --notebook-dir "C://python//DSAProject" # NOTE: Do replace directory with your local directory or path for python projects or where ever you are storing Notebook files.
# Step 3 : In a python console or IDE, try the following
print('Hello World!')
print("Hello World in double Quotes !")
print("Hello World """ Sentence in Quotes !""" sample ")