Please enable JavaScript.
Coggle requires JavaScript to display documents.
Data Structure (Built-in (Array (list (mixed data type, mutable), tuple…
Data Structure
Built-in
-
-
Array
-
tuple
mixed data type, immutable
array.array
single data type, mutable
str
single data type of characters, immutable
bytes
single data type of byte objects, immutable
bytearray
single data type of byte objects, mutable
Pandas
-
Dataframe
Index
-
[[ ]] - return df type
.loc
-
[[ row, col ]] return df type
[row, col] return sr type
.iloc
-
[row, col] return sr type
[[ row, col ]] return df type
-