%load_problem text-in-a-box
Problem: Text in a Box
Write a program box.py that takes word as a command-line argument and prints the word in a box as shown below.
$ python box.py python
+--------+
| python |
+--------+
Please note that there should be exactly one space on either side of the text in the box.
You can verify your solution using:
%verify_problem text-in-a-box