Concatenation ( + ) : List Cancatenation : List PYTHON examples


PYTHON examples » List » List Cancatenation »

 

Concatenation ( + )


 

num_list = [43, -1.23, -26.19e5]
str_list = ['jack', 'jumped', 'over', 'candlestick']
mixup_list = [4.0[1'x']'beef', -1.9+6j]

print num_list + mixup_list
print str_list + num_list

   
  



Leave a Comment / Note


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


PYTHON examples

 Navioo List
» List Cancatenation