Échangez deux listes sans utiliser la troisième variable Python

list1=["Hi how are you"]
list2=["Iam fine"]
list1,list2=list2,list1
Fancy Fish