From a1f0b2d85745da3d1ef6900ac8ea77e19a8bd215 Mon Sep 17 00:00:00 2001 From: bsyouness Date: Mon, 3 Sep 2018 19:44:41 -0700 Subject: [PATCH 1/5] added keypoints for episode 1 --- _episodes/01-short-introduction-to-Python.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/_episodes/01-short-introduction-to-Python.md b/_episodes/01-short-introduction-to-Python.md index 447acfcd9..79898e344 100644 --- a/_episodes/01-short-introduction-to-Python.md +++ b/_episodes/01-short-introduction-to-Python.md @@ -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 (e.g. `str` for strings, `int` for integers, `float`s, `list`s, `tuple`s, and `dict` for dictionaries)." + - "Lists and tuples have in common that they are ordered lists of elements; they differ in that a tuple is immutable (cannot be changed)." + - "A dictionary (also called hash map) is a data structure of the form `translation = {'one': 1, 'two': 2}`." --- ## Interpreter From 2878c66356b93f7bd575df1eccfcf2acd948c94b Mon Sep 17 00:00:00 2001 From: April Wright Date: Tue, 30 Oct 2018 13:36:28 -0700 Subject: [PATCH 2/5] Update _episodes/01-short-introduction-to-Python.md Co-Authored-By: bsyouness --- _episodes/01-short-introduction-to-Python.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_episodes/01-short-introduction-to-Python.md b/_episodes/01-short-introduction-to-Python.md index 79898e344..fb810d748 100644 --- a/_episodes/01-short-introduction-to-Python.md +++ b/_episodes/01-short-introduction-to-Python.md @@ -14,7 +14,7 @@ keypoints: - "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 (e.g. `str` for strings, `int` for integers, `float`s, `list`s, `tuple`s, and `dict` for dictionaries)." - "Lists and tuples have in common that they are ordered lists of elements; they differ in that a tuple is immutable (cannot be changed)." - - "A dictionary (also called hash map) is a data structure of the form `translation = {'one': 1, 'two': 2}`." + - "A dictionary (also called hash map) is a data structure of the form `translation = {'one': 1, 'two': 2}`." Dictionaries are stored as unordered in the computer's memory, necessitating the use of keys instead of list-like indexing. --- ## Interpreter From 3d842ef3fb55413091a838efeca31db5213322ad Mon Sep 17 00:00:00 2001 From: April Wright Date: Tue, 30 Oct 2018 13:36:36 -0700 Subject: [PATCH 3/5] Update _episodes/01-short-introduction-to-Python.md Co-Authored-By: bsyouness --- _episodes/01-short-introduction-to-Python.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_episodes/01-short-introduction-to-Python.md b/_episodes/01-short-introduction-to-Python.md index fb810d748..4e5d167b7 100644 --- a/_episodes/01-short-introduction-to-Python.md +++ b/_episodes/01-short-introduction-to-Python.md @@ -13,7 +13,7 @@ objectives: keypoints: - "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 (e.g. `str` for strings, `int` for integers, `float`s, `list`s, `tuple`s, and `dict` for dictionaries)." - - "Lists and tuples have in common that they are ordered lists of elements; they differ in that a tuple is immutable (cannot be changed)." + - "Lists and tuples are similar in that they are ordered lists of elements; they differ in that a tuple is immutable (cannot be changed)." - "A dictionary (also called hash map) is a data structure of the form `translation = {'one': 1, 'two': 2}`." Dictionaries are stored as unordered in the computer's memory, necessitating the use of keys instead of list-like indexing. --- From f6d8ab78d885271f812890360e257c23e407df12 Mon Sep 17 00:00:00 2001 From: bsyouness Date: Mon, 28 Jan 2019 11:12:28 -0500 Subject: [PATCH 4/5] Update 01-short-introduction-to-Python.md --- _episodes/01-short-introduction-to-Python.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_episodes/01-short-introduction-to-Python.md b/_episodes/01-short-introduction-to-Python.md index 4e5d167b7..4ee7d9fd3 100644 --- a/_episodes/01-short-introduction-to-Python.md +++ b/_episodes/01-short-introduction-to-Python.md @@ -12,9 +12,9 @@ objectives: - "Define the following as it relates to Python: lists, tuples, and dictionaries." keypoints: - "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 (e.g. `str` for strings, `int` for integers, `float`s, `list`s, `tuple`s, and `dict` for dictionaries)." + - "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)." - - "A dictionary (also called hash map) is a data structure of the form `translation = {'one': 1, 'two': 2}`." Dictionaries are stored as unordered in the computer's memory, necessitating the use of keys instead of list-like indexing. + - "Dictionaries are unordered data structures that provide mappings between keys and values. --- ## Interpreter From 1be3f45bb0d9a6cc489e33ed5a98dde3981da097 Mon Sep 17 00:00:00 2001 From: bsyouness Date: Mon, 28 Jan 2019 11:13:31 -0500 Subject: [PATCH 5/5] Update 01-short-introduction-to-Python.md --- _episodes/01-short-introduction-to-Python.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_episodes/01-short-introduction-to-Python.md b/_episodes/01-short-introduction-to-Python.md index 4ee7d9fd3..25810b607 100644 --- a/_episodes/01-short-introduction-to-Python.md +++ b/_episodes/01-short-introduction-to-Python.md @@ -12,7 +12,7 @@ objectives: - "Define the following as it relates to Python: lists, tuples, and dictionaries." keypoints: - "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." + - "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. ---