Browse Source

Delete alphabetical-order.py

PythonCoder8 4 years ago
parent
commit
d4c9d17ef7
1 changed files with 0 additions and 3 deletions
  1. 0 3
      alphabetical-order.py

+ 0 - 3
alphabetical-order.py

@@ -1,3 +0,0 @@
-words = input('Enter any number of words separated with commas: ')
-split_words = words.split(',')
-print(f'Here are the words you entered, arranged in alphabetical order: {tuple(sorted(split_words))}')