Updated indentation of the python code

pull/223/head
Arpna 2024-05-17 11:50:39 +05:30 zatwierdzone przez GitHub
rodzic 5acac6257e
commit dc3e5b80be
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
1 zmienionych plików z 5 dodań i 5 usunięć

Wyświetl plik

@ -30,7 +30,7 @@ The provided code defines a Python function count_words(sentence) aimed at count
It then calls the count_words function, passing the user's input as an argument, and stores the returned word count in the variable number_of_words.
Finally, it prints out the number of words in the sentence.
def count_words(sentence):
def count_words(sentence):
# Split the sentence into words
words = sentence.split()
@ -39,8 +39,8 @@ The provided code defines a Python function count_words(sentence) aimed at count
return word_count
# Example usage:
sentence = input("Enter a sentence: ")
number_of_words = count_words(sentence)
print("Number of words:", number_of_words)
# Example usage:
sentence = input("Enter a sentence: ")
number_of_words = count_words(sentence)
print("Number of words:", number_of_words)