Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Pythonシェルから関数を出力しようとすると、このような出力が得られますが、これは正しいです.
>> simplify(~A | (C & (~(B & ~C) | A))) >> ~A | C
私はpythonファイルを使ってこの方法で同じことをしようとしています
res = simplify(~A | (C & (~(B & ~C) | A))) print res
それは私にこの出力を与えています。
| ~A C