I am complete noob in python. I was trying to figure out working with tuples. So, I did the following and I do not understand the result.
n=12        
m = (0,1,2)
print n and m   
# Result  (0, 1, 2)
print n or m  
# Result 12
This might have been asked before but I couldn't find any related.
 
    