Code Example 1: l = [i for i in range(1, 11, 1)] print(l) Output: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] Example 2: l = [[i, i+1] for i in range(1,...