When you repeat and get the output of the same sentence over and over to the point you set, you use ‘while’ rather than ‘if’

This example gets outputs of 1, 2 .. up to 9 because if a reach the number of 10, it stops since it is not smaller than 10 that I set for while
This shows that ‘while’ runs forever until python thinks it is false
__________________________________________________________________
Since python will loop over and over to when the statement is recognized as not true, thus there will be a situation when you want to stop the loop
There are several ways to stop the loop, like changing the statement, but the easy way is to use ‘break’
Both list and tuple are to make a group of some type of things:

Difference between two:
words or letters in the tuple are immutable
words or letters in the list are mutable
tuple doesn’t require parenthesis
_______________________________________________________
Could delete, add, or edit the things in the tuple or list:
There are two different types in number, which are integer, and floating-point
Integer: Using the whole number
Floating-point: Using the decimal number
You could declare numbers to alphabets and could calculate in python like:

Different mathematical expressions into python
^ = **
To find remainder = % Ex) 7 %…