What value of x will produce the output?
Hi
Mike
x=
if(x!=1):
print('Hello')
else:
print('Hi')
print('Mike')
What is the output of the following code?
x="Go"
if(x=="Go"):
print('Go ')
else:
print('Stop')
print('Mike')
What is the result of the following lines of code?
x=1 x>-5