Solution Exercise 93 *: python algorithm which transforms a list of integers into the list of factorials
Exercise 93 * Write an algorithm in python which transforms a list of integers L = [n1, n2, n3, ...., np] into the list of factorials: [n1! , n2! ,…
Solution Exercise 92**: python algorithm which transforms a list into a list made up of the means of the partial sums
Exercise 92** Write a python algorithm which transforms a list of integers L = [n1, n2, n3, ...., np] into a list whose elements are the averages of the partial…
Solution Exercise 91 **: python algorithm which move all words containing a number at the end of the list
Exercise 91 ** Write an algorithm in python as a function that transforms a string text T into a list where words containing numbers are placed at the end of…
Solution Exercise 97 *: python algorithm which determines the index of a character in a string
Exercise 97 * Write a python algorithm as a function which takes as parameter a couple (s, x) formed by a text string s and a char x and which…
Solution Exercise 96 * : python algorithm that returns words that contain more than one capital letter
Exercise 96 * Write an algorithm in Python as a function which takes a text string as parameter and which returns the list of words containing at least two uppercase…
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 +…