Cheatography
https://cheatography.com
Python Pre-defined Functions
This is a draft cheat sheet. It is a work in progress and is not finished yet.
Predefined functions
sum() |
len() |
min() |
max() |
del |
|
String Methods
count("sous-chaîne", debut, fin) |
compte le nombre d'occurrence |
chaine.isalpha( |
chaine alphabétique ou non |
chaine.isalnum() |
chaine numérique/alphabétique ou non |
chaine.isspace() |
chaine former des espaces ou non |
find("sous-chaine", debut, fin) |
trouver la position du sous-chaine |
startswith(“souschaine”, debut, fin) |
retourner true si la fonction commence par la souschaine mentionnée |
strip(): |
supprimer tous les caractères de début et de fin mentionnés dans son argument (valeur par défaut est l'espace) |
chaine.replace ("sous-chaine","new-chaine",max) |
remplacer la sous-chaîne par une nouvelle sous-chaîne dans la chaîne. |
endswith("souschaine", debut, fin) |
islower()/isupper() |
lower () /upper() |
min ("chaîne") /min ("chaîne") |
|
|
Lists
list.append() |
Adding an element to the end of the list |
list.insert(pos,element) |
Inserting elements at a particular position |
list.index(element) |
Returns the index the element |
list.extend(list1) |
Add the elements of list1 to list |
list.remove(item) |
removes the specified item. |
list.pop(index) |
removes the specified index |
list.clear() |
empties the list |
list.sort() |
Sort the list alphabetically |
list.reverse() |
Reverse the order of the list items |
list.count(value) |
returns the number of elements |
list.pop(position) |
Removes the element at the specified position |
|
|
Dictionary
dict.get("model") |
Get the value of the "model" key |
add() |
Ajoute un élément à l'ensemble |
dict.keys() |
Get a list of the keys |
dict.items() |
a list of the key:value pairs |
dict.values() |
return a list of all the values |
dict.pop() |
Removes the element with the specified key |
difference() |
Différence en deux ensembles |
union() |
union de deux ensemble |
sorted() |
|