mirror of
https://hub.njuu.cf/TheAlgorithms/Python.git
synced 2023-10-11 13:06:12 +08:00
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
This commit is contained in:
parent
b345ea586f
commit
f815dff201
@ -8,6 +8,7 @@ Example
|
||||
The largest word in the given string is output
|
||||
"""
|
||||
|
||||
|
||||
def find_smallest_and_largest_words(input_string):
|
||||
words = input_string.split()
|
||||
if not words:
|
||||
@ -18,6 +19,7 @@ def find_smallest_and_largest_words(input_string):
|
||||
|
||||
return smallest_word, largest_word
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
input_string = input("Enter a string here:\n").strip()
|
||||
smallest, largest = find_smallest_and_largest_words(input_string)
|
||||
|
Loading…
Reference in New Issue
Block a user