Hello! Below is the answers to last week's task. To see the task, please visit Here . The code is seen below: print("Answers to online task by Hampo, JohnPaul A.C.") print() print("Week 1 Answers") print("Answer to last week's task No.1\ Hello Dear! Here is a little task for us in python.\ \ 1] Write a program to find the sum of the data structure below\ [[1,2,3],[4,5,6,7],[8,9]]\ \ 2] Write a program to convert the tuple to a dictionary where\ name is the key and age is the value. Example: x = ('John', 23, 'm'), ('Peter', 43, 'm')\ then the output will be y = {'John': 23, 'Peter': 43}.") print() print("Solution") print("Task Number 1") a = [[1,2,3],[4,5,6,7],[8,9]] print("Using a for loop") b = [] for i in range(len(a)): for j in range(len(a[i])): b.append(a[i][j]) print("The sum of the list of lists = ", sum(b)) print() print("Alternati...