You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think it would be a good idea to discuss "mutable" and "immutable" objects before lesson 5 (lists). As a suggestion, it could be a good idea to give a brief explanation of the "most common" objects: dictionaries, arrays, lists, strings in lesson 1. As a novice learner, it took me a while to realize that lists are mutable. Lesson 5 does discuss lists and explains that they are mutable, although I think an Introduction would be better in lesson 1 when we discuss data types. On the same note, in lessons 2 to 4 the NumPy library is discussed and used, therefore it could be a good idea to discuss the existence of "arrays" in lesson 1 too.
The text was updated successfully, but these errors were encountered:
Hi @almacarolina , thank you for taking the time to provide feedback on the lesson.
Despite its title, in The Python Fundamentals episode we don't try to teach all fundamentals that might be covered in a more general introduction to Python course, rather, we try to set a foundation toward teaching learners how to analyze our sample data. We intentionally keep what we cover light in this first episode due to time constraints of a workshop and cognitive load that can be too much for those learners who are new to programming.
While we do bring up strings in episode 1, we hold off on lists until later when we are getting ready to apply them in our learning, and thus wait to explain "mutable" and "immutable" until we get there and have examples to put it into context. Regarding not introducing arrays in episode 1, the arrays used in episode 2 are of type numpy.ndarray, and not a built-in Python data type, so we wait to bring them up until using numpy.
I think it would be a good idea to discuss "mutable" and "immutable" objects before lesson 5 (lists). As a suggestion, it could be a good idea to give a brief explanation of the "most common" objects: dictionaries, arrays, lists, strings in lesson 1. As a novice learner, it took me a while to realize that lists are mutable. Lesson 5 does discuss lists and explains that they are mutable, although I think an Introduction would be better in lesson 1 when we discuss data types. On the same note, in lessons 2 to 4 the NumPy library is discussed and used, therefore it could be a good idea to discuss the existence of "arrays" in lesson 1 too.
The text was updated successfully, but these errors were encountered: