list lowercase python code example
Example 1: how to lowercase list in python
[x.lower() for x in ["A","B","C"]]
['a', 'b', 'c']
>>> [x.upper() for x in ["a","b","c"]]
['A', 'B', 'C']
>>> map(lambda x:x.lower(),["A","B","C"])
['a', 'b', 'c']
>>> map(lambda x:x.upper(),["a","b","c"])
['A', 'B', 'C']
Example 2: how to convert list to all uppercase
#Capitalise list
c = ['Kenya','Uganda', 'Tanzania','Ethopia','Azerbaijan']
converted_list = [x.upper() for x in c]print(converted_list)print("Remember to clap :-)")
Example 3: Write a method that converts all strings in a list to their upper case lambda
import java.util.Arrays;
import java.util.List;
public class Main {
public static void main(final String[] args) {
List<String> friends = Arrays.asList("Ross", "Chandler", "CSS",
"Monica", "Joey", "Rachel");
friends.stream().map(name -> name.toUpperCase())
.forEach(name -> System.out.print(name + " "));
}
}