Yellow cover of While Loops in Python. This template resources is from 365 Data Science.

While-Loops in Python

Hristina Hristova

Hristina Hristova

Course Author

The following is a program demonstrating the implementation of a while-loop. The program asks the user to input the ages of students in a class. Using a while-loop, these ages are stored in an array and printed out in the end. Some other related topics you might be interested in are Linear Search in Python, Binary Search in Python, Insertion Sort in Python, and Sets and Operations with Sets in Python. The While-Loops in Python template is among the topics covered in detail in the 365 Data Science Program. 

Hristina Hristova

Hristina Hristova

Course Author


Who is it for

This free Jupyter notebook template is designed for Data Scientists, Data Analysts, Data Architects, Data Engineers, Big Data Architects, Big Data Engineers, BI Developers, Machine Learning Engineers who want to know how to use while loops.

How it can help you

The while loop used whenever we need to perform a certain action until a certain condition is met that will interrupt the loop. Imagine that you are a lecturer that needs to enter into the system all students participating in the course. The software engineer of the system has used a while-loop which asks the lecturer to enter the next student. The condition that would break the loop is her pressing the button Done on the screen.

While-Loops in Python

Yellow cover of While Loops in Python. This template resources is from 365 Data Science.