This is the presentation associated with the python identity operators video.
[dflip id=”3285″ ][/dflip]
Python Identity Operators Video Question
This is the Question that was asked in the python identity operators video
Question : What is the output of the following code:
In [1]:
a = "Logical Python"
b = "Logical Python"
print(a is b)
[bg_collapse view=”button-blue” color=”#ffffff” icon=”eye” expand_text=”Show Answer” collapse_text=”Hide Answer” ]
False.
[/bg_collapse]