Using List Operators : List Cancatenation : List PYTHON examples


PYTHON examples » List » List Cancatenation »

 

Using List Operators


Using List Operators
 

li = ['a''b''mpilgrim'] 
li = li + ['example', 'new']                       
print li 

li += ['two']                                      
print li 

           
         
  



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON examples

 Navioo List
» List Cancatenation