MOCKSTACKS
EN
Questions And Answers

More Tutorials









Raspberry Operator


Operators are symbols used to perform code operations in various expressions of programs, and operands are the objects of operators. For example, 2 > 3, where the operands are 2 and 3 and the operator is “>". Depending on different functions, operators can be divided into many kinds, such as arithmetic operators, comparison operators, etc. In this lesson, we will first learn about comparison and logical operators.

Comparison Operator

Comparison operators, also known as relational operators, are used to compare the values of constants, variables, or expressions. If the comparison is true, it returns True; otherwise, it returns False.

In fact, you would have seen them in various conditional judgment statements in the projects of previous lessons. For example, when we programmed a button to control the state of an LED in the last lesson, we used the comparison operator “==" to evaluate whether the return value of the button is 1:

1 while True:
2 val = BUTTON.value) 
3 if val == 1:
4 LED.value(1) 
5 else:
6 LED.value(0)

Logical operators
Logical operators can concatenate two or more simple statements to form even more complex statements. We often use them in all kinds of conditional statements.


Conclusion

In this page (written and validated by ) you learned about Raspberry Operator . What's Next? If you are interested in completing Raspberry tutorial, your next topic will be learning about: Raspberry Check Return Value of Rotary Angle Sensor.



Incorrect info or code snippet? We take very seriously the accuracy of the information provided on our website. We also make sure to test all snippets and examples provided for each section. If you find any incorrect information, please send us an email about the issue: mockstacks@gmail.com.


Share On:


Mockstacks was launched to help beginners learn programming languages; the site is optimized with no Ads as, Ads might slow down the performance. We also don't track any personal information; we also don't collect any kind of data unless the user provided us a corrected information. Almost all examples have been tested. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. By using Mockstacks.com, you agree to have read and accepted our terms of use, cookies and privacy policy.