why python shell is behaving like this? -


when trying print function python shell giving me output this, correct.

>> simplify(~a | (c & (~(b & ~c) | a))) >> ~a | c 

i trying same thing in manner using python file

res = simplify(~a | (c & (~(b & ~c) | a))) print res 

it giving me output.

| ~a c 


Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -