Show Menu
Cheatography

Python Pre-defined Functions Cheat Sheet (DRAFT) by

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(­"­sou­s-c­haî­ne", debut, fin)
compte le nombre d'occu­rrence
chaine.is­alpha(
chaine alphab­étique ou non
chaine.is­alnum()
chaine numéri­que­/al­pha­bétique ou non
chaine.is­space()
chaine former des espaces ou non
find("s­ous­-ch­ain­e", debut, fin)
trouver la position du sous-c­haine
starts­wit­h(“­sou­sch­aine”, 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.re­place ("so­us-­cha­ine­"­,"ne­w-c­hai­ne",max)
remplacer la sous-c­haîne par une nouvelle sous-c­haîne dans la chaîne.
endswi­th(­"­sou­sch­ain­e", debut, fin)
islowe­r()­/is­upper()
lower () /upper()
min ("ch­aîn­e") /min ("ch­aîn­e")
 

Lists

list.a­ppend()
Adding an element to the end of the list
list.i­nse­rt(­pos­,el­ement)
Inserting elements at a particular position
list.i­nde­x(e­lement)
Returns the index the element
list.e­xte­nd(­list1)
Add the elements of list1 to list
list.r­emo­ve(­item)
removes the specified item.
list.p­op(­index)
removes the specified index
list.c­lear()
empties the list
list.s­ort()
Sort the list alphab­eti­cally
list.r­eve­rse()
Reverse the order of the list items
list.c­oun­t(v­alue)
returns the number of elements
list.p­op(­pos­ition)
Removes the element at the specified position
 

Dictionary

dict.g­et(­"­mod­el")
Get the value of the "­mod­el" key
add()
Ajoute un élément à l'ensemble
dict.k­eys()
Get a list of the keys
dict.i­tems()
a list of the key:value pairs
dict.v­alues()
return a list of all the values
dict.pop()
Removes the element with the specified key
differ­ence()
Différence en deux ensembles
union()
union de deux ensemble
sorted()