Algebra booleana

66 days ago by jal.ccs

1==1 
       
True
True
1==2 
       
False
False
1<2 
       
True
True
1=<2 
       
Traceback (click to the left of this block for traceback)
...
SyntaxError: invalid syntax
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "_sage_input_7.py", line 10, in <module>
    exec compile(u'open("___code___.py","w").write("# -*- coding: utf-8 -*-\\n" + _support_.preparse_worksheet_cell(base64.b64decode("MT08Mg=="),globals())+"\\n"); execfile(os.path.abspath("___code___.py"))
  File "", line 1, in <module>
    
  File "/tmp/tmp1Q7pWb/___code___.py", line 3
    _sage_const_1 =<_sage_const_2 
                   ^
SyntaxError: invalid syntax
1<=2 
       
True
True
1>2 
       
False
False
1>=2 
       
False
False