Question: Instructions In PYTHON language, using the string methods, write a program that asks the user to enter two words, change them to upper case, then
Instructions
In PYTHON language, using the string methods, write a program that asks the user to enter two words, change them to upper case, then prints them in alphabetical order
Sample Run
First word: Zebra,
Second word: Cat
CAT
ZEBRA
Hint
Your solution will use an if statement.
- And remember that comparison operators like > or < apply to words as well as numbers, such that (word1 < word2) will determine which occurs first alphabetically.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
