Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- width = 30
- side = 4
- boldness = 4
- height = 13
- empty = '_' * width + '\n'
- body = '_' * side + '*' * boldness + '_' * (width - side - boldness) + '\n'
- vert = '_' * side + '*' * (width - 3 * side) + '_' * 2 * side + '\n'
- print(empty +
- vert * (boldness // 2) +
- 2 * body +
- vert * (boldness // 2) +
- (height - 4 - 2 * (boldness // 2)) * body +
- empty
- )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement