Skip to content

Commit

Permalink
update data types
Browse files Browse the repository at this point in the history
  • Loading branch information
d-chambers committed Jan 21, 2024
1 parent 800b7f3 commit 6a27052
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 5 deletions.
Binary file added python_intro/images/toolbox.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added python_intro/modules/datatypes/img.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 29 additions & 5 deletions python_intro/modules/datatypes/overview.qmd
Original file line number Diff line number Diff line change
@@ -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)

0 comments on commit 6a27052

Please sign in to comment.