| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 
 | Test, boucle & co
    if,elif,else,
    is,not,and,or,
    for,in,while,
    assert,try,except,finally
 
Action (des choses qui font quelque chose)
    from,import,as,
    global,nonlocal,
    class,def,
    del,
    lambda,
    return,yield,
    with,access,raise,
    continue,pass,break,
 
Constante
    True,False,
    None
 
Action modifiable
    abs,dict,help,min,setattr,
    all,dir,hex,next,slice,
    any,divmod,id,object,sorted,
    ascii,enumerate,input,oct,staticmethod,
    bin,eval,int,open,str,
    bool,exec,isinstance,ord,sum,
    bytearray,filter,issubclass,pow,super,
    bytes,float,iter,print,tuple,
    callable,format,len,property,type,
    chr,frozenset,list,range,vars,
    classmethod,getattr,locals,repr,zip,
    compile,globals,map,reversed,__import__,
    complex,hasattr,max,round,
     delattr,hash,memoryview,set
 
Constante modifiable
    NotImplemented,Ellipsis,__debug__ | 
Partager