For your first exercise try to simply create the following:
- Integer
- Float
- String
- List
- Tuple
- Dictionary
Remember, each of these are objects. To create them, create an object name and make it equal to the item you wish to create. Once you have created each of the objects try to print each of them off. To print in Python 3, remember to follow this formula:
print (**thing you want printed**)
When you have the code entered, hit the play button to test your code and see if it works.
If you get stuck, look at Lesson 02: Cheat Sheet. If you feel comfortable with this, test your knowledge of Pythonic syntax so far with Lesson 02: Quiz.