Ajouter l'attribut de Python

my_list = ['one','two','three']
my_list.append('four')
#.append will add the string or int to the end of the list 
Tired Tarsier