No solo eso si no que ademas tienes mal el indentado o sangrado del código.
Código Python:
Ver original#!/usr/bin/env python
import os
we=1
class operaciones:
def suma(self, num1, num2):
return num1 + num2
def resta(self, num1, num2):
return num1 - num2
def division(self, num1, num2):
return num1 / num2
def multi(self, num1, num2):
return num1 * num2
while we==1:
opcion= raw_input("""Que Operacion Quiere Hacer?:\n a)Sumar\n b)Restar\n c)Dividir\n d)Multiplicar\n e)Salir
\nSeleccione la Opcion: """)
if opcion== "a":
try:
os.system("clear")
numero1=(raw_input("introduce primer numero: "))
numero1=int(numero1)
numero2=(raw_input("introduce el segundo numero: "))
numero2=int(numero2)
calcular=operaciones()
print calcular.suma(numero1, numero2)
except Exception, e:
print "Error: ",e
seguir=raw_input("Desea Continuar? (s/n)")
if seguir=="s":
we=1
else:
print "Finalizado"
we=0