Positive Negative Zero
Input: `n` (int). Return: 'Positive', 'Negative' or 'Zero'.
Example
Input: 5
Output: 'Positive'
Need a hint?
- Use elif for multiple conditions
Run your code to see output
Input: `n` (int). Return: 'Positive', 'Negative' or 'Zero'.
Input: 5
Output: 'Positive'
Run your code to see output