Skip to content

Commit b463ab9

Browse files
committed
Fix long line for sierpinski.py
1 parent 202e9ad commit b463ab9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

chapter6/solutions/sierpinski.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ def draw_sierpinski(n):
6262
return x, y
6363

6464
if __name__ == '__main__':
65-
n = int(input('Enter the desired number of points in the Sierpinski Triangle: '))
65+
n = int(input('Enter the desired number of points'
66+
'in the Sierpinski Triangle: '))
6667
x, y = draw_sierpinski(n)
6768
# Plot the points
6869
plt.plot(x, y, 'o')

0 commit comments

Comments
 (0)