diff --git a/SiteDjango/config.pyc b/SiteDjango/config.pyc new file mode 100644 index 0000000..cb0cd6c --- /dev/null +++ b/SiteDjango/config.pyc @@ -0,0 +1 @@ +meow meow meow \ No newline at end of file diff --git a/Visualization/main.py b/Visualization/main.py new file mode 100644 index 0000000..e69de29 diff --git a/Visualization/mpl_squares.py b/Visualization/mpl_squares.py new file mode 100644 index 0000000..10103cf --- /dev/null +++ b/Visualization/mpl_squares.py @@ -0,0 +1,8 @@ +from matplotlib import pyplot as plt + +squares = [1, 4, 9, 16, 25, 36, 49, 64] + +fig, ax = plt.subplots() +ax.plot(squares, linewidth = 3) + +plt.show() \ No newline at end of file