Score: 0 / 0 answered
Progress: 0 of 871 qs
time elap: 00:00
Question 1: What is the output of the following code snippet?
def func(x): return x * 5 lst = [1, 2, 3] result = map(func, lst) print(list(result))
Subject: Advanced Python Syntax in Python Expert Level
Difficulty: Medium