Open alecramsay opened 1 year ago
Built-in Python data types:
str <<< text int, float, complex <<< numbers list, tuple, range <<< sequences dict <<< mappings set, frozenset <<< sets bool <<< booleans bytes, bytearray, memoryview <<< binary data
These are read from CSV as Pandas objects:
While these are read as strings (because ast.literal_eval() doesn't support them):
Built-in Python data types:
str <<< text int, float, complex <<< numbers list, tuple, range <<< sequences dict <<< mappings set, frozenset <<< sets bool <<< booleans bytes, bytearray, memoryview <<< binary data