Wiki

Changes between Version 8 and Version 9 of ExpressionTour

Show
Ignore:
Timestamp:
05/28/13 13:24:14 (11 years ago)
Author:
hopscc
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ExpressionTour

    v8 v9  
    5858== Boolean == 
    5959 
    60 Boolean expressions include the literals `true` and `false` as well as operations such as `and`, `or`, `not`, comparisons and other tests. 
     60Boolean expressions include the literals `true` and `false` as well as logical operations such as `and`, `or`, `not`, comparisons and other tests. 
    6161{{{ 
    6262#!python 
     
    6565}}} 
    6666 
    67 to-do (all, any, don't say ==true or ==false) 
    68  
     67Note: You dont need to compare booleans against true or false ( dont say == true or ==false). Most things have a natural truth or not 
     68see 
     69 
     70 
     71to-do (all, any)  
    6972== Strings == 
    7073