Three Words

Three Words

We have prepared a set of Editor's Choice Solutions. You will see them first after you solve the mission. In order to see all other solutions you should change the filter.

بیاید به ربات ها یاد بدهیم که حروف را از اعداد تشخیص بدهند.

به شما به رشته (string) شامل کلمات و حروف داده شده که به وسیله فاصله -فضای خالی- از یکدیگر جدا شده اند. شما باید چک کنید که یکی از بخش های...

Input (ورودی): یک رشته (string) شامل چند کلمه

Output (خروجی): جواب در نوع بولین (boolean)

مثال:

assert checkio("Hello World hello") == True
assert checkio("He is 123 man") == False
assert checkio("1 2 3 4") == False
assert checkio("bla bla bla bla") == True

استفاده: به شما یاد میدهد که چگونه با رشته ها (string) کار کنید و همچنین شما را با چند تایع (function) پر کاربرد آشنا میکند.

فرض ها:
ورودی شامل کلمات و/یا اعداد است. هیچ کلمه ای با حروف مخلوط شده نیست.

0 < len(words) < 100

You should be an authorized user in order to see the full description and start solving this mission.
45