在Python中,合并數據結構的方法取決于數據結構的類型。
list1 = [1, 2, 3]
list2 = [4, 5, 6]
merged_list = list1 + list2
print(merged_list)
dict1 = {'a': 1, 'b': 2}
dict2 = {'c': 3, 'd': 4}
dict1.update(dict2)
print(dict1)
set1 = {1, 2, 3}
set2 = {3, 4, 5}
merged_set = set1.union(set2)
print(merged_set)
這些是在Python中合并不同類型的數據結構的一些常見方法,具體方法取決于你要合并的數據結構類型。