mirror of
https://github.com/wez/wezterm.git
synced 2024-12-27 07:18:13 +03:00
13 lines
150 B
Python
13 lines
150 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
# Print out the unicde block range
|
||
|
|
||
|
s = ""
|
||
|
for b in range(0x2580, 0x25A0):
|
||
|
s += chr(b) + " "
|
||
|
|
||
|
print(s)
|
||
|
print(s)
|
||
|
print(s)
|
||
|
|