map
words = ['map', 'function', 'is', 'powerful']
# Find the length of each word lengths = list(map(
print(lengths) # expected [3, 8, 2, 8]
Setting up Python environment...