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…
Python Courses & Exercises with solutions !
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…
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…
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…
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…
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…
Exercise 41 Write an algorithm in python that extracts from a list of numbers the sublist of numbers whose last digit is even and the second is odd. Example if:…
Exercise 40 Write a Python algorithm that extracts from a list of numbers the sublist of numbers that end with an even number. Example: if L = [21, 14, 346,…