Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 =\

share|improve this question
Did you actually try using ==? – 6502 Mar 15 '11 at 0:31
The question isn't specific enough - what exactly are you hoping as output? – cbz Mar 15 '11 at 0:31
If you post the code for your best attempt at a solution, you will likely receive relevant answers in minutes. – Apalala Mar 15 '11 at 0:36
added code =) =) – NullVoxPopuli Mar 15 '11 at 0:39
Is 1,2,3 the same as 3,2,1? If so, that's quite different. – corsiKa Mar 15 '11 at 0:40
show 2 more comments

3 Answers

up vote 3 down vote accepted

The docs indicate various ways you can compare sequences and other types:

(1, 2, 3)              < (1, 2, 4)
[1, 2, 3]              < [1, 2, 4]
'ABC' < 'C' < 'Pascal' < 'Python'
(1, 2, 3, 4)           < (1, 2, 4)
(1, 2)                 < (1, 2, -1)
(1, 2, 3)             == (1.0, 2.0, 3.0)
(1, 2, ('aa', 'ab'))   < (1, 2, ('abc', 'a'), 4)

So for your example:

C:\Users\jon>python
Python 2.6.5 (r265:79096, Mar 19 2010, 21:48:26) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> [1,-1,1] == [1.0,-1,1]
True
share|improve this answer

==

share|improve this answer

found it... Python does Ternary weird:

print("the input and the output are " + ( "the same" if (input == calc_out)  else "not the same"))
share|improve this answer
4  
C does ternary weird, Python does it readable! ;-) – David Heffernan Mar 15 '11 at 0:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.