Solution Exercise 51: Python program to generate lists of all characters from its ascii code
Exercise 51 Using ascii code, write a Python program to generate lists of uppercase and lowercase letters: [A, B, C, ..., Z] , [a, b, c,. .., z]
Python Courses & Exercises with solutions !
Exercise 51 Using ascii code, write a Python program to generate lists of uppercase and lowercase letters: [A, B, C, ..., Z] , [a, b, c,. .., z]
Exercise50 Write a python algorithm as a function which takes a string 's' as input and returns the list of numeric characters contained in the string s. Example if s…
Exercise 49 Write a Python algorithm as a function that takes a string and a character as inputs and counts the number of times the character appears in the string…
Exercise 48 Write a Python algorithm as a function which takes as parameters a pair of strings (s1, s2) and which returns the string s obtained by concatenating in an…
Exercise 47 Write a python algorithm that determines the list of all the words which contains at least one uppercase character in a given text T. Example if T =…
Exercise 46 Write a Python algorithm as a function which takes as parameter a string s and which returns the list of all the words contained in s whose length…
Exercise 45 Write a python algorithm as a function which takes as parameters a string characters s and which returns another string obtained from s by replacing all the uppercase…