fork download
  1. a = [35,35,10,55,50,35,25,35]
  2. b = [35,65,10,60,75,40,20,40]
  3.  
  4. c=(a+b)/2
  5. print(c)
Runtime error #stdin #stdout #stderr 0.01s 9992KB
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 'int'