Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion _episodes/01-short-introduction-to-Python.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ objectives:
- "Perform mathematical operations in Python using basic operators."
- "Define the following as it relates to Python: lists, tuples, and dictionaries."
keypoints:
- "FIXME"
- "Python is an interpreted language which can be used interactively (executing one command at a time) or in scripting mode (executing a series of commands saved in file)."
- "One can assign a value to a variable in Python. Those variables can be of several types, such as string, integer, floating point and complex numbers."
- "Lists and tuples are similar in that they are ordered lists of elements; they differ in that a tuple is immutable (cannot be changed)."
- "Dictionaries are unordered data structures that provide mappings between keys and values.
---

## Interpreter
Expand Down