(1) Swapping values x, y = 1, 2 print(x, y) x, y = y, x print(x, y) (2) Combining a list of strings into a single one sentence_list = ["my", "name", "is", "George"] sentence_string = " ".join(sentence_list) print(sentence_string) fruits = ['apple', 'mango', 'orange'] print(', '.join(fruits)) numbers = [1, 2, 3, 4, 5] print(', '.join(map(str, numbers))) items = [1, 'apple', 2, 3, 'orange'] print(', '.join(map(str, items))) row = [100, "android", "ios", "blackberry"] print(', '.join(str(x) for x in row)) print(*row, sep=', ') (3) Splitting a string into a list of substrings sentence_string = "my name is George" sentence_string.split() print(sentence_string) (4) Initialising a list filled with some number [0]*1000 # List of 1000 zeros [8.2]*1000 # List of 1000 8.2's (5) Merging dictionaries x...