Created
August 2, 2011 07:09
-
-
Save adaptives/1119729 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# The meaning of operators in Python | |
# + plus Addition | |
# - minus Subtraction | |
# / slash Division | |
# * asterisk Multiplication | |
# / percent Also modulus operator, which returns the remainder from division | |
# < less-than Returns true if the operans on the LHS is less than RHS | |
# > greater-than Returns true if the operand on the LHS is greater than RHS | |
# <= less-than-equal Returns true if the operand on the LHS is less than or equal to RHS | |
# >= greater-than-equal Returns true if the operand on the LHS is greater than or equal to the RHS | |
print "I will now count my chickens:" | |
print "Hens", 25 + 30 / 6 | |
print "Roosters", 100 - 25 * 3 % 4 | |
print "Now I will count the eggs:" | |
print 3 + 2 + 1 - 5 + 4 % 2 - 1 / 4 + 6 | |
print "Is it true that 3 + 2 < 5 - 7?" | |
print 3 + 2 < 5 - 7 | |
print "What is 3 + 2?", 3 + 2 | |
print "What is 5 - 7?", 5 - 7 | |
print "Oh, that's why it's False." | |
print "How about some more." | |
print "Is it greater?", 5 > -2 | |
print "Is it greater or equal?", 5 >= -2 | |
print "Is it less or equal?", 5 <= -2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment