- 1. Entrada, impressão e números
- 2. Números inteiros e flutuantes
- 3. Condições: if-then-else
- 4. Para loop com alcance
- 5. Cordas
- 6. Enquanto loop
- 7. Listas
- 8. Funções e recursão
- 9. Listas bidimensionais (arrays)
- 10. Conjuntos
- 11. Dicionários
- 12. JavaScript
- 13. HTML5 and CSS
- 14. Responsive Design with Bootstrap
- 15. jQuery
Ad place
The number of words
Statement
Given a string consisting of words separated by spaces. Determine how many words it has. To solve the problem, use the methodcount
.
In all the problems input the data using input()
and print the result using print()
.
12# Read an integer:# a = int(input())XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Input:
1Hello worldXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Output:
1XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Saved solutions
Tests
Input | Correct answer | |
---|---|---|
Hello world | 2 | |
Hello | 1 | |
q w e | 3 | |
In the hole in the ground there lived a hobbit | 10 | |
One two three four five | 5 |