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 202e9ad commit b463ab9Copy full SHA for b463ab9
chapter6/solutions/sierpinski.py
@@ -62,7 +62,8 @@ def draw_sierpinski(n):
62
return x, y
63
64
if __name__ == '__main__':
65
- n = int(input('Enter the desired number of points in the Sierpinski Triangle: '))
+ n = int(input('Enter the desired number of points'
66
+ 'in the Sierpinski Triangle: '))
67
x, y = draw_sierpinski(n)
68
# Plot the points
69
plt.plot(x, y, 'o')
0 commit comments