Orange 5 Programmer Pdf 15: Supported Interfaces and OS
- lestducpecoogokade
- Aug 14, 2023
- 1 min read
27. Write a Python program to sort each sublist of strings in a given list of lists using lambda. Go to the editorOriginal list:[['green', 'orange'], ['black', 'white'], ['white', 'black', 'orange']]After sorting each sublist of the said list of lists:[['green', 'orange'], ['black', 'white'], ['black', 'orange', 'white']]Click me to see the sample solution
39. Write a Python program to find the elements of a given list of strings that contain a specific substring using lambda. Go to the editorOriginal list:['red', 'black', 'white', 'green', 'orange']Substring to search:ackElements of the said list that contain specific substring:['black']Substring to search:abcElements of the said list that contain specific substring:[]Click me to see the sample solution
Orange 5 Programmer Pdf 15
50. Write a Python program to remove specific words from a given list using lambda. Go to the editorOriginal list:['orange', 'red', 'green', 'blue', 'white', 'black']Remove words:['orange', 'black']After removing the specified words from the said list:['red', 'green', 'blue', 'white']Click me to see the sample solution 2ff7e9595c
Comentarios