Skip to content

Latest commit

 

History

History
 
 

python_intro

date duration maintainer order title
w01d01
75
zwmiller
5
Optional Python Review

Sample Lesson Plan

Learning Objectives

With the Python Review and Best Practices notebook, students should be able to:

  • Write a function that requires use of a: list, set, and dictionary. https://www.hackerrank.com/x/library/personal/all/questions/579875/edit
  • Understand at a high level the concept of immutability
  • Have an understanding of how each data type is converted to a boolean, and how to check each type for existence
  • Use loop and enumerate to operate on sequential data.
  • Write a python function.
  • Document code effectively.
  • How to handle errors using try-except or raise

After the Importing with Python section, the students should know how to:

  • Import a module
  • Use from x import y
  • Understand the basics of namespaces

Additional Resources