mirror of
https://github.com/wassname/scikit-image.git
synced 2026-06-28 02:30:57 +08:00
16 lines
299 B
Python
Executable File
16 lines
299 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
from __future__ import print_function
|
|
import sys
|
|
|
|
screen_width = 50
|
|
|
|
print('*' * screen_width)
|
|
|
|
if len(sys.argv) > 1:
|
|
header = ' '.join(sys.argv[1:])
|
|
header = header.replace('.', ' ')
|
|
print('*', header.center(screen_width - 4), '*')
|
|
print('*' * screen_width)
|
|
|