What Does the Cow Say?

What Does the Cow Say?

Simple
English FR RU

Lets cow say!

Our cow is young and can only say some of the words we teach it. Not only does it talk, but this cow can turn into the famous Tux ( wiki/Cowsay ) if we ask it nicely.

You are given some text and your function should format it in the "cows" speech. Let's examine the rules for this problem:
  • The cow is always the same, only quote changes.
  • Multiple spaces in a row are replaced by one space.
  • The top border consists of underscore characters. It starts from a single space and ends before the border column.
  • Each line of the quote consists of these parts: quote border(1), space(1), line(1-39), space(1), quote border(1).
  • If line is less than 40 characters, it will fit into one string. The string is quoted in <> .
  • If the line is greater than or equal to 40 characters, it should be split by these rules:
    • Max line size is 39 chars. If any spaces are in the line, split it by the rightmost space (this space is removed from text)...
    • Middle line borders: ||
    • Last line borders: \/
  • The bottom border consists of the minus sign. Has same length as top.
  • cowsay console program has strange behavior in certain cases, this cases will not be tested here.
  •      _________________________________
        / Dog goes woof                   \
        | Cat goes meow                   |
        | Bird goes tweet                 |
        | And mouse goes squeek           |
        | Cow goes moo                    |
        | Duck goes quack                 |
        \ And the solution will go to you /
         ---------------------------------
                \   ^__^
                 \  (oo)\_______
                    (__)\       )\/\
                        ||----w |
                        ||     ||
        
    What does the cow say?

    Input: Text as a string.

    Output: The result for the console as a string.

    Hint: Read python docs ( 2.7 , 3.3 ) about formatting styles (str.format and %). Notice for r before the string. It is a raw string and they use different rules for interpreting backslash escape sequences.

    Example:

    cowsay('Checkio rulezz') == r'''
     ________________
    < Checkio rulezz >
     ----------------
            \   ^__^
             \  (oo)\_______
                (__)\       )\/\
                    ||----w |
                    ||     ||
    '''
    cowsay('A longtextwithonlyonespacetofittwolines.') == r'''
     ________________________________________
    / A                                      \
    \ longtextwithonlyonespacetofittwolines. /
     ----------------------------------------
            \   ^__^
             \  (oo)\_______
                (__)\       )\/\
                    ||----w |
                    ||     ||
    '''
    
    cowsay('Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.') == r'''
     _________________________________________
    / Lorem ipsum dolor sit amet, consectetur \
    | adipisicing elit, sed do eiusmod tempor |
    | incididunt ut labore et dolore magna    |
    \ aliqua.                                 /
     -----------------------------------------
            \   ^__^
             \  (oo)\_______
                (__)\       )\/\
                    ||----w |
                    ||     ||
    '''
    
        

    How it is used: The original Cowsays are written in the Perl programming language, and as such are easily adaptable to system tasks in Unix. They can perform functions such as telling users their home directories are full, that they have new mail, etc. Now you will write your own realisation for this classic unix program. This concept can teach you how to prepare and format text for the console output.

    Precondition: 0 < len(text) < 858;
    text can't consist of spaces only;
    text contains only ASCII letters, digits and punctuation.

    You should be an authorized user in order to see the full description and start solving this mission.
    Settings
    Code:
    Other:
    Invalid hot key. Each hot key should be unique and valid
    Hot keys:
    CheckiO Extensions

    CheckiO Extensions allow you to use local files to solve missions. More info in a blog post.

    In order to install CheckiO client you'll need installed Python (version at least 3.8)

    Install CheckiO Client first:

    pip3 install checkio_client

    Configure your tool

    checkio --domain=py config --key=

    Sync solutions into your local folder

    checkio sync

    (in beta testing) Launch local server so your browser can use it and sync solution between local file end extension on the fly. (doesn't work for safari)

    checkio serv -d

    Alternatevly, you can install Chrome extension or FF addon

    checkio install-plugin
    checkio install-plugin --ff
    checkio install-plugin --chromium

    Read more here about other functionality that the checkio client provides. Feel free to submit an issue in case of any difficulties.

    Pair Programming (Beta-version)

    Welcome to Pair Programming! Engage in real-time collaboration on coding projects by starting a session and sharing the provided unique URL with friends or colleagues. This feature is perfect for joint project development, debugging, or learning new skills together. Simply click 'Start Session' to begin your collaborative coding journey!

    Waiting for Pair Programming to start...

    You are trying to join a pair programming session that has not started yet.

    Please wait for the session creator to join.

    Waiting for Pair Programming to reconnect...

    It looks like the creator of the pair programming session closed the editor window.

    It might happen accidentally, so that you can wait for reconnection.

    ×
     
     
    << <
    > >>
    exec show

    Whats Next?

    Free accounts will see Best CheckiO solutions with some delay.
    Best Solutions will be opened in a moment
    Become Awesome and Don't wait
    The next stage is ""
    Will be activated in
    View More Solutions Random Review Solutions Go to the next mission