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
Post a Comment