Assignment 1 Obtain the primes less than 10, from the list primes. Assignment 2 Obtain all the multiples of three from the list num. Assignment 3 Given a list of marks of students in an examination, obtain a list with marks in descending order. marks = [99, 67, 47, 100, 50, 75, 62] Assignment 4 Given the list primes, primes = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29], How do you obtain the last 4 primes? Given a list, p, of unknown length, obtain the first 3 (or all, if there are fewer) characters of it. Reversed function reverses a list in place. True or False?