ie, compare:
1,-1,1
to
1.0,-1, 1
should be the same
print("the input and the output are " + ( (input == calc_out) ? "the same" : "not the same"))
but it give a lexical error =\
|
ie, compare:
to
should be the same
but it give a lexical error =\ |
||||
| show 2 more comments |
|
The docs indicate various ways you can compare sequences and other types:
So for your example:
|
||||
|
|
|
found it... Python does Ternary weird:
|
|||||
|
==? – 6502 Mar 15 '11 at 0:311,2,3the same as3,2,1? If so, that's quite different. – corsiKa Mar 15 '11 at 0:40