Comment obtenir une liste de toutes les variables en mémoire Python

# Use the magic function %who to show all local user defined variables
%who
# Use %whos to show details
%whos
Trained Tuna