Christmas Present Python
Author: Logiker
Category: Christmas Challenge
System: PC
Language: Python
Len source code: 57
Len exe file: 57
Len code only: 57
Instructions:
Run with Python interpreter.
Description:
a=f"\n+{'+':-^17}+";print(" \\o/"+(a+"\n! ! !"*8)*2+a)
The variable a creates the top, middle and bottom line. The string starts with a new line,
then a plus, then a plus, that is surrounded by 16 minuses, and finally a plus again.
When printing tab is directly used as character, and not with the longer, escaped version '\t'.
The rest is quite obvious: We have the top. Then a line and 8 columns. this twice.
And last but not least the final line.
Comments:
I created this before the submission system got online.