python lambda function uppercase code example
Example 1: how to make a list copy in python with lowercase check
current_users_lower = []
for user in current_users:
current_users_lower.append(user.lower())
Example 2: 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 + " "));
}
}