Please enable JavaScript.
Coggle requires JavaScript to display documents.
Python (Data Types (Numeric (Float, Integer), Comment: #comment - genral…
Python
Data Types
-
-
-
Nested List: [1, 2, 3, [4,5, ['target']]]
Dictionary d={'key1' : val1, 'key1': val2 }
Tuples = List without reassign = (1, 2, 3)
-
Usesfull Funs
-
-
-
-
map(function, list) - apply some function to some list
-
filter(bool func, list) - filtering out vals from list according to the bool func return
-
-