コード例 #1
0
ファイル: poly_test.py プロジェクト: ilafila/SPBU
 def test2(self):
     self.assertEqual(diff('- 3x^2 + 2x + 1'), '- 6x + 2')
コード例 #2
0
ファイル: poly_test.py プロジェクト: ilafila/SPBU
 def test5(self):
     self.assertEqual(diff('2x^2 + 5'), '4x')
コード例 #3
0
ファイル: poly_test.py プロジェクト: ilafila/SPBU
 def test3(self):
     self.assertEqual(diff('3x^7 + 10x^5 - 4x^2 + 3'), '21x^6 + 50x^4 - 8x')
コード例 #4
0
ファイル: poly_test.py プロジェクト: ilafila/SPBU
 def test4(self):
     self.assertEqual(diff('10x^3 - 20x'), '30x^2 - 20')
コード例 #5
0
ファイル: poly.py プロジェクト: ilafila/SPBU
from poly_logic import diff

print('Enter an algebraic polynomial with spaces between characters:')
thing = input()
print('The derivative is equal to:')
print(diff(thing))