reading-notes

This project is maintained by MaramhMohammad

OPERATIONS AND LOOPS

OPERATORS Expressions rely on things called operators; they allow programmers to create a single value from one or more values.

USING FOR LOOPS

for loop provides a concise way of writing the loop structure. Unlike a while loop for

USING WHILE LOOPS

while loop: A while loop is a control flow statement that allows code to be executed repeatedly based on a given Boolean condition. while