Truthy and falsy values
Based on the input, return a boolean value.
Sample Code:
def trueFalse(inp):
# Enter your logic here...
Examples:
Input: 'Python'
Output: True
Explanation: String is a truthy value.
Input: ''
Output: False
Explanation: Empty string is a falsy value.