This commit is contained in:
VS-Code
2026-02-06 10:17:19 +01:00
parent 229eb4db1d
commit 7931a95840
2 changed files with 40 additions and 32 deletions

View File

@@ -1,17 +1,20 @@
width = 4
width = 3
TOP_L, TOP_F, TOP_R = "\u2598", "\u2580", "\u259D"
MID_L, MID_F, MID_R = "\u258C", "\u2588", "\u2590"
BOT_L, BOT_F, BOT_R = "\u2596", "\u2584", "\u2597"
print(TOP_L, TOP_F, TOP_R)
print(MID_L, MID_F, MID_R)
print(BOT_L, BOT_F, BOT_R)
# print(TOP_L, TOP_F, TOP_R)
# print(MID_L, MID_F, MID_R)
# print(BOT_L, BOT_F, BOT_R)
BL_TR, TL_BR = "\u259E", "\u259A"
print((BOT_R + BOT_F * width + BOT_L + " " * (2+width))*4) # Top Row
print((BOT_R + BOT_F * width + BOT_L + " " * (2+width)) * 4) # Top Row
print((MID_R + " " * width + MID_L + " " * (2+width)) * 4) # Mid Row
print((TOP_R + TOP_F * width + TOP_L + " " * (2+width)) * 4) # Bot Row
for row in range(8):
line1 = ""
line2 = ""