Challenge 6: List of Cubes
Explore how to build a list containing cubes of the first 20 numbers in Python. Understand the application of list comprehensions and practice updating lists through an interactive coding challenge.
We'll cover the following...
We'll cover the following...
Problem Statement
Given a getCube() function, create a list with the cubes of the first 20 numbers. ...