Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created April 1, 2021 23:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/957302a5ed77d1bb003987bd7bf80243 to your computer and use it in GitHub Desktop.
Save parzibyte/957302a5ed77d1bb003987bd7bf80243 to your computer and use it in GitHub Desktop.
juego1 = Juego("Cuphead", 180)
juego2 = Juego("Cuphead", 180)
juego3 = Juego("Resident Evil 2", 430)
if juego1 == juego2:
print("Son iguales")
else:
print("NO son iguales")
if juego1 != juego3:
print("El juego 1 y juego 3 NO son iguales")
else:
print("El juego 1 y juego 3 SÍ son iguales")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment