Changes between Version 8 and Version 9 of ExpressionTour
- Timestamp:
- 05/28/13 13:24:14 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ExpressionTour
v8 v9 58 58 == Boolean == 59 59 60 Boolean expressions include the literals `true` and `false` as well as operations such as `and`, `or`, `not`, comparisons and other tests.60 Boolean expressions include the literals `true` and `false` as well as logical operations such as `and`, `or`, `not`, comparisons and other tests. 61 61 {{{ 62 62 #!python … … 65 65 }}} 66 66 67 to-do (all, any, don't say ==true or ==false) 68 67 Note: You dont need to compare booleans against true or false ( dont say == true or ==false). Most things have a natural truth or not 68 see 69 70 71 to-do (all, any) 69 72 == Strings == 70 73