

Lass uns den Robotern beibringen Worte und Zahlen zu unterscheiden.
Gegeben wird ein String mit Worten und Zahlen, die durch ein Leerzeichen getrennt sind. Die Worte enthalten nur Buchstaben. Du sollst prüfen, ob der String drei Worte ... enthält. Zum Beispiel: , dieser String enthält drei Wörter in Folge.
Ein String mit Worten und Zahlen.
Die Antwort als boolescher Wert. ( oder )
checkio("Hello World hello") == True checkio("He is 123 man") == False checkio("1 2 3 4") == False checkio("bla bla bla bla") == True checkio("Hi") == False
In dieser Aufgabe lernst Du den Umgang mit Strings, außerdem werden einig nützliche Funktionen vorgestellt.
Der vorgegebene String enthält Worte und/oder Zahlen. Ein Mix aus Buchstaben und Ziffern kommt nicht vor.
0 < len(words) < 100
Become Awesome
- No Ads
- No Limits
- More Content
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.