Raspberry Pi - Display and Output
What will be the output on the Raspberry Pi display after running this Python code?
status = 'ON'
if status == 'ON':
print('Device is active')
else:
print('Device is inactive')