This page is not yet available in Spanish. We are working on its translation.
If you have any questions or feedback about our current translation project, feel free to reach out to us!

Metadata

ID: python-best-practices/equal-basic-types

Language: Python

Severity: Warning

Category: Error Prone

Description

When comparing basic types (string, integer, float), we should always values of the same types.

Non-Compliant Code Examples

1 == "1"  # Comparing an integer and a string
1.0 == "foo"  # Comparing a float and a string

Compliant Code Examples

1 == 1
"abc" == "def"
a == 1
a == b
https://static.datadoghq.com/static/images/logos/github_avatar.svg https://static.datadoghq.com/static/images/logos/vscode_avatar.svg jetbrains

Integraciones perfectas. Prueba Datadog Code Analysis