Python - 27

Python - 27: Creating ASCII Art

ASCII art uses text characters to create pictures and designs.

✦ Python Editor
▶ Output

👀 Show Example Solution
print("  _____ ")
print(" /     \\\\")
print("|  0 0  |")
print("|   ^   |")
print("| \\___/ |")
print(" \\\\_____/")

print()

for row in range(1, 8):

    print("@" * row)