Skip to content

How to minimize the space inside rows? #3251

Answered by TomJGooding
Yoyoda75 asked this question in General
Discussion options

You must be logged in to vote

Unicode has a full block character (u2588) which hopefully will help explain the gaps between your rows. Try running the code below:

BLACK_SQUARE = "■"  # u25a0
FULL_BLOCK = "█"  # u2588

for _ in range(3):
    print(BLACK_SQUARE, FULL_BLOCK)

Replies: 1 comment 3 replies

Comment options

You must be logged in to vote
3 replies
@Yoyoda75
Comment options

@Yoyoda75
Comment options

@TomJGooding
Comment options

Answer selected by Yoyoda75
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants