Solution Exercise 48: Python algorithm that determines the sum of elements with odd index of given list
Exercise 48 Write a Python algorithm as a function that takes a list L of numbers as a parameter and returns the sum of elements of L with odd index.…
Solution Exercise 47: Python algorithm that determines the sum of the elements with odd index of a given list
Exercise 47 Write a Python algorithm as a function that takes a list L as a parameter and returns the sum of elements of the list L with odd index.…
Solution Exercise 46: list of uppercase letters in a python string
Exercise 46 Write a Python algorithm as a function which takes as parameter a string variable s and which returns the list of all uppercase characters found in s. Solution…
Solution Exercise 45: python algorithm that removes all integers from a list
Exercise 45 Write a Python algorithm as a function which takes as parameter a list of real numbers L and which returns the list obtained from L by removing all…
Solution Exercise 44: python algorithm for moving the elements of a list
Exercise 44 Write a Python algorithm as a function which takes as a parameter a list of integers L and which returns the list obtained from L by moving all…
Solution Exercise 43: python algorithm which removes negative elements from a list of numbers
Exercise 43 Write a Python algorithm as a function which takes as parameter a list of integers L and which returns the list obtained from L by removing all negative…
Solution Exercise 42: even and odd list in python
Exercise 42 Write a Python algorithm as a function which takes as a parameter a list of integers L and which returns the list obtained from L by inserting just…