fork download
  1. x=raw_input("enter the food")
  2. y=raw_input("enter the size")
  3. v=raw_input("enter the varity")
  4. if x=='pizza' and v=='calzone' and y=='medium' :
  5. print('pick another')
  6. else:
  7. print('ordered')
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Pizza
compilation info
Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "/usr/lib/python2.7/py_compile.py", line 117, in compile
    raise py_exc
py_compile.PyCompileError: Sorry: IndentationError: expected an indented block (prog.py, line 5)
stdout
Standard output is empty