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.
この式 (x-3)(x+4) を Python コードで記述する必要があり、正しく取得できないようです。このコードは、行単位で指定されていない単一の式として記述する必要があります。
暗黙的に乗算演算子を省略できるプログラミング言語はほとんどありません。
(x - 3) * (x + 4)
単純化する方法をまだ覚えている場合
pow(x,2) + x - 12