Answers for "swap two lists without using third variable python"

0

swap two lists without using third variable python

list1=["Hi how are you"]
list2=["Iam fine"]
list1,list2=list2,list1
Posted by: Guest on September-11-2021

Code answers related to "swap two lists without using third variable python"

Python Answers by Framework

Browse Popular Code Answers by Language