-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
800b7f3
commit 6a27052
Showing
3 changed files
with
29 additions
and
5 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |