Solution Exercise 90 *: python algorithm which transforms a list by adding its terms
Exercise 90 * Given a list of integers L = [n1, n2, n3, ..., np] , write an algorithm in python which returns the list: L_sum = [n1, n1 +…
Solution Exercise 89 *: python algorithm which determines the list of integers within a list
Exercise 89 * Given a list L, write a python algorithm which returns the list of digits contained within the elements of list L without repetition. Example if L =…
Solution Exercise 88 *: python algorithm which determines the list of integers within a list
Exercise 88 * Given a list L, write a python algorithm which returns the list of digits contained within the elements of the list L. Example if L = ["Python3",…
Solution Exercise 87: python algorithm which converts a list into a string
Exercise 87 Given a list L, write a Python algorithm to convert a list into a string without using any predefined method other than the str() method. Example if L…
Solution Exercise 86: python algorithm which returns the list of integers elements of a given list
Exercise 86 Given a list L, write a python algorithm which returns the list of integer elements of L. Example: if L = ["Python3", 91, "Java2", 95] , the algorithm…
Solution Exercise 85: moving the nul elements of a python list to the end
Exercise 85 Write a python program which that move the null values of a list to the end of the list while keeping the order of the other non-null elements.…