Skip to content

Commit 826ec53

Browse files
committed
area_curves: Break long line
1 parent 4588c20 commit 826ec53

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

chapter7/solutions/area_curves.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,5 @@ def find_area(f, g, var, a, b):
2424
print('One of the functions entered is invalid')
2525
else:
2626
var = Symbol(var)
27-
print('Area enclosed by {0} and {1} is: {2} '.format(f, g, find_area(f, g, var, l, u)))
27+
print('Area enclosed by {0} and {1} is: {2} '.
28+
format(f, g, find_area(f, g, var, l, u)))

0 commit comments

Comments
 (0)