DEV Community

Cover image for Ibuprofeno.py💊| #183: Explica este código Python
Cristian Fernando
Cristian Fernando

Posted on

Ibuprofeno.py💊| #183: Explica este código Python

Explica este código Python

Dificultad: Fácil

def add(a, b):
    return a + b
result = add(3,'2')
print(result)
Enter fullscreen mode Exit fullscreen mode
  • A. 5
  • B. 32
  • C. "32"
  • D. TypeError

Respuesta:

👉 D. TypeError

En Python no es posible sumar valores que sean de diferente tipo, necesariamente tienen que ser cadenas para una concatenación, o número para para una suma.

Por ello el interprete salta con un TypeError.

Top comments (0)

AWS Security LIVE!

Tune in for AWS Security LIVE!

Join AWS Security LIVE! for expert insights and actionable tips to protect your organization and keep security teams prepared.

Learn More

👋 Kindness is contagious

Dive into an ocean of knowledge with this thought-provoking post, revered deeply within the supportive DEV Community. Developers of all levels are welcome to join and enhance our collective intelligence.

Saying a simple "thank you" can brighten someone's day. Share your gratitude in the comments below!

On DEV, sharing ideas eases our path and fortifies our community connections. Found this helpful? Sending a quick thanks to the author can be profoundly valued.

Okay