fork download
  1. #usr/bin/python
  2. list=[1,2,3]
  3. list1=[4,5,6]
  4. list=list-list1
  5. print list
Runtime error #stdin #stdout #stderr 0s 23304KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Traceback (most recent call last):
  File "prog.py", line 4, in <module>
TypeError: unsupported operand type(s) for -: 'list' and 'list'