List coding challenge

list1 = [1, 2, 3, 4,5,6]

cube_roots = []
for i in list1:
cube_roots.append(pow(i,3))

print(cube_roots)

3 Likes

Very nice, Keep it up.

2 Likes