Skip to main content
Data Science Wizardry Blog by Attila Vajda

Art at the edge of mathematics and computer science.

>>> print("\n".join([" " for i in range(4)]))

Making one liners and learning Python and data science seems like a good course to take.

Simple histograms can be created with ASCII art.

print('<˚)))><')

This is the drawing of a fish.

 File "<stdin>", line 1
    print("\n".join([" " * 3 + i for i + "#" in range(4)]))

Breaking a one liner of a diamond shape down into parts produces minimal error.