python: add further ref lists

This commit is contained in:
thomasabishop 2023-09-01 09:19:46 +01:00
parent 15d5babe08
commit 581598ae33

View file

@ -179,3 +179,7 @@ list2 = [4, 5, 6]
merged_list = list1 + list2
print(merged_list) # Output: [1, 2, 3, 4, 5, 6]
```
## See also
[Sorting lists in Python](/Programming_Languages/Python/Syntax/Sorting_lists_in_Python.md)