This is a simple Python program that takes three numbers as input and prints the largest one.
If all three numbers are equal, the program will notify the user with the message "Equal".
- Python 3.x
- User Input: Receives three separate numbers from the user.
- Logical Comparison: Uses
if-elif-elseconditions to determine the maximum value. - Equality Check: Identifies when all three numbers are the same.
- Save the file as
max_finder.py. - Open your terminal or command prompt.
- Run the following command:
python max_.py