différence entre == et est

string = "69"
integer = 69

print(string is integer) # Prints False, as the values are the same but NOT the datatypes
print(string == integer) # Prints False, as the values are the same (a type check is not performed with ==)
The Angriest Crusader