Please enable JavaScript.
Coggle requires JavaScript to display documents.
Python (basic (Functions (list methodes (list.index(), list.count(), list…
Python
basic
-
-
Variables & Types
type()
float: or floating point: a number that has both an integer and fractional part, separated by a point.
-
string ( str): or string: a type to represent text. You can use single or double quotes to build a string.
-
-
-
-
List: [a, b ,c]
my_list[start:end]: The start index will be included, while the end index is not.
-
Functions
-
-
-
-
-
-
-
-
list methodes
-
-
-
-
reverse(), that reverses the order of the elements in the list it is called on.
-
-
-