We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4588c20 commit 826ec53Copy full SHA for 826ec53
chapter7/solutions/area_curves.py
@@ -24,4 +24,5 @@ def find_area(f, g, var, a, b):
24
print('One of the functions entered is invalid')
25
else:
26
var = Symbol(var)
27
- print('Area enclosed by {0} and {1} is: {2} '.format(f, g, find_area(f, g, var, l, u)))
+ print('Area enclosed by {0} and {1} is: {2} '.
28
+ format(f, g, find_area(f, g, var, l, u)))
0 commit comments