Coding Challenge: Carousel
Learn how to write a program that mimics the working of a carousel.
We'll cover the following...
Try to code each exercise twice, once with a while loop and the other with a for, to see for yourself which one is the most appropriate.
Problem statement
Write a program that launches a carousel ...
Ask