Skip to content

Instantly share code, notes, and snippets.

@kirbysebastian
Created January 25, 2020 13:53
Show Gist options
  • Select an option

  • Save kirbysebastian/9eb8ee1d485c8621b9813c3b86735c44 to your computer and use it in GitHub Desktop.

Select an option

Save kirbysebastian/9eb8ee1d485c8621b9813c3b86735c44 to your computer and use it in GitHub Desktop.
Data Types
- Integers -> int()
- Whole numbers
- Floating Point -> float()
- Numbers with decimal point
- Strings ("") -> str()
- Immutable ordered sequence of characters
- Lists [] -> list()
- Mutable ordered sequence of objects
- Dictionaries {Key: Value} -> dict()
- Unordered key value pair
- Tuples (A,B) -> tuple()
- Ordered immutable sequence of objects
- Sets {} -> set()
- Unordered collection of unique objects
- Booleans -> bool()
- Logical value either TRUE or FALSE
STRINGS
- [
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment