mirror of
https://github.com/paradoxxxzero/butterfly.git
synced 2026-05-30 17:09:39 +00:00
9 lines
228 B
Python
Executable File
9 lines
228 B
Python
Executable File
#!/bin/env python
|
|
import sys
|
|
import os
|
|
rows, cols = map(int, os.popen('stty size', 'r').read().split())
|
|
|
|
for r in range(rows):
|
|
for c in range(cols):
|
|
sys.stdout.write('\x1b[48;2;%d;%d;%dm ' % (255 - r, 255 - c, 255))
|