We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Map and Lambda Function
Map and Lambda Function
Sort by
recency
|
484 Discussions
|
Please Login in order to post a comment
if name == 'main': n = int(input()) print(list(map(cube, fibonacci(n))))**
Here's my code: