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…
Python Courses & Exercises with solutions !
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…
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…
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 +…
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 =…
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",…
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…