Código Python:
Ver originaldef complejos (a,b):
if a==0 and b==0:
print(0)
elif a==0 and b==1:
print("i")
elif a==0 and b==-1:
print("-i")
elif a==0 and b!=0:
print(str(b) + "i")
elif a!=0 and b==0:
print(a)
elif b==-1:
print (str(a) + "-" + "i")
elif b<-1:
print (str(a)+ str(b)+"i")
elif b==1:
print (str(a) + "+" + "i")
elif b>1:
print (str(a)+ "+" + str(b)+"i")
else:
print (str(a) + str(b) + "i")
complejos (a,b)
bueno al final he conseguido incluso mejorarlo un poquito mas jeje
decirme que tal esta y asi comienzo yo a hacer mi segunda cuestion...
Muchisimas gracias