List Operations
1. Concatenation Operator (+): This operator joins the elements of two or more list.
Example-
list1 = ["Ram", "Shyam"]
list2 = ["Sita", "Gita"]
list3 = list1+list2
print(list3) ------------------------------ Output: ["Ram", "Shyam", "Sita", "Gita"]
2. Replication Operator (*): This operator repeats the elements of a list to specified number of times.
Example-
list1 = ["Ram", "Shyam"]
list2 = list1+ 2
print(list2) ------------------------------ Output: ["Ram", "Shyam", "Ram", "Shyam"]