"Hello World (Colab)" Exercise

Learning Objectives
Prerequisites
Instructions
Success Criteria

Last updated


Last updated
# My First Notebook!
This is a text cell. It uses the markdown language. The line above is a heading, starting with the # sign. Don't be confused that # means something different in .md and .py files.
We can make links like [this](https://github.com/prof-rossetti/intro-to-python).
And lists too:
+ Item 1
+ Item 2
+ Item 3
For more information about Markdown syntax, see the [Markdown Guide](https://guides.github.com/pdfs/markdown-cheatsheet-online.pdf).# This is some example python code
# These lines starting with # are "comments"
# Don't be confused that # means something different in .md files than .py files
print("HELLO WORLD!")
x = 2 + 2
print(x)