
Fibonacci Poem
This mission is inspired by the following Brian Bilston's facebook post:
Split a given text into multiline one with "\n", where each line includes number of words equal to the current Fibonacci number.
Here are some clarifications:
- Fibonacci sequence starts from 0, 1, but the result string should include only non-empty lines;
- in case, there are not enough words for current line - complement to proper length with "_";
- punctuation marks are considered as a part of a previous or next word.
Let's look at the schematic example ("w" for a word):
"w w w w w w w w" -> '''w w w w w w w w _ _ _ _'''
Input: A string (str).
Output: A string (str).
Examples:
assert fibo_poem("") == "" assert fibo_poem("Django framework") == "Django\nframework" assert fibo_poem("Zen of Python") == "Zen\nof\nPython _" assert ( fibo_poem("There are three kinds of lies: Lies, damned lies, and the benchmarks.") == "There\nare\nthree kinds\nof lies: Lies,\ndamned lies, and the benchmarks." )
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.