Created
January 25, 2020 13:53
-
-
Save kirbysebastian/9eb8ee1d485c8621b9813c3b86735c44 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| 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