listes de python de fiusion

List1 = ['DragonBall','Naruto']
List2 = ['OnePiece','One Punch Man']
ResultList = List1 + List2
#['DragonBall','Naruto','OnePiece','One Punch Man']
Bekkoucha Mohamed Abdelwaret