
Text Reformating
Your friend has asked you to reformat a text for the school magazine.
You have long strings that you want to reformat so they would fill a user-specified number of columns. But you should not cut the words by doing that. The input text doesn’t contain words longer than the number of columns for the output text.
Input: Two arguments. Text as a String and the number of columns as an int.
Output: A string.
Example:
text_reformating("Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec non nisl ultricies, scelerisque mi ac, vestibulum neque. Ut ullamcorper rhoncus.", 20) == '''Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec non nisl ultricies, scelerisque mi ac, vestibulum neque. Ut ullamcorper rhoncus.'''
How it is used: (math is used everywhere)
Precondition: both given ints should be between -1000 and 1000
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.