Solution Exercise 53 : python code to transform given a string into lowercase
Exercise 53 Using Exercise 51, create a python program as a function which takes as a parameter a string s and which returns the same string in lowercase without using…
Python Courses & Exercises with solutions !
Exercise 53 Using Exercise 51, create a python program as a function which takes as a parameter a string s and which returns the same string in lowercase without using…
Exercise 52 Using Exercise 51, create a python program as a function which takes as a parameter a string s and which returns the same string in uppercase without using…
Exercise 51 Using ascii code, write a python program that returns and displays the list of all uppercase characters [A, B, C, ..., Z] and the list of all lowercase…
Exercise 50 Write a python program as a function which takes a string s as a parameter and returns the list of numeric characters contained in the string s. Example…
Exercise 49 1- Create a class called TK_extended which inherits from TK class and having the attributes:- Master: that represents the name of the main window- title: that represents the…
Exercise 49 Write a Python program as a function that counts the number of times a character appears in a string without using any predefined functions. Solution def caracter_count(s ,…
Exercise 3 write a python algorithm as function that takes as parameter a list l and returns a tuple of two lists (l_old , l_even) where l_even is make up…