31. What will be the output of the following Python code snippet?
['hello', 'morning'][bool('')]
						
					['hello', 'morning'][bool('')]['hello', 'morning'][bool('')]if (9 < 0) and (0 < -9):
    print("hello")
elif (9 > 0) or False:
    print("good")
else:
    print("bad")4^12bool(‘False’)
bool()a=10
b=20
a=a^b
b=a^b
a=a^b
print(a,b)