If I wanted to say something for a while loop such as: while time is greater than or equal to 0, would it simply be written as while time > or == 0? Or is there no way to do this?
The relation "is greater than or equal to" is treated as a single statement, not an alternation of two disjoint ones. The presence of the word "or" in the English reading doesn't imply that the operator or is involved in the translation to Python. In mathematics, this "greater than or equal" relationship is written with the symbol ≥, but usually in programming languages, and certainly in Python, it's written >=.
oris involved in the translation to Python. In mathematics, this "greater than or equal" relationship is written with the symbol ≥, but usually in programming languages, and certainly in Python, it's written>=.