Информатика, вопрос задал rahatmarat76 , 2 года назад

Create a program that will count number of words in a text.
Input:
I love programming with Python!!!
Output:
5


rahatmarat76: Надо доказать что I love programming with Python!!! состоит из пяти слов
rahatmarat76: хахаха вот именно

Ответы на вопрос

Ответил nikdissv
2

print(

len(

input("Enter A Sentence: ").split()

))

Новые вопросы