diff --git a/python_intro/images/toolbox.png b/python_intro/images/toolbox.png new file mode 100644 index 0000000..d70aca2 Binary files /dev/null and b/python_intro/images/toolbox.png differ diff --git a/python_intro/modules/datatypes/img.png b/python_intro/modules/datatypes/img.png new file mode 100644 index 0000000..75cf198 Binary files /dev/null and b/python_intro/modules/datatypes/img.png differ diff --git a/python_intro/modules/datatypes/overview.qmd b/python_intro/modules/datatypes/overview.qmd index 7a796f3..c912556 100644 --- a/python_intro/modules/datatypes/overview.qmd +++ b/python_intro/modules/datatypes/overview.qmd @@ -1,10 +1,34 @@ --- -title: Data Types +title: Basic Python Types + --- +![](../../images/toolbox.png) + +:::{.callout-note appearance="minimal"} +Let's start at the very beginning, +a very good place to start + +\- Julie Andrews +::: + +This module covers some common built-in datatypes in python. + +Understanding these datatypes is not only important for using python effectively, but also for understanding more advanced features of python's type system and implementation. + +# Objectives + +In this module we will learn about: + +1. Numeric types: int, float, complex +2. Boolean +3. Strings +4. Containers: list and dict + + +# Reading -This module provides a rapid review of some common built-in datatypes in python. +- [Basic Data Types in Python](https://realpython.com/python-data-types/) -This includes +# Additional Resources -## References -[Python's built-in types](https://docs.python.org/3/library/stdtypes.html) + - [Python's built-in types](https://docs.python.org/3/library/stdtypes.html)