What is the output of the following code ?
print("" or {}, {} or [])
"" or {} - is evaluated from left to right. As "" is False {} is getting printed{} or [] - is evaluated from left to right. As {} is False [] is getting printed
"" or {}
{} or []
Comment here: