Data Type Python

if []:
   print "empty."
  
if [1]:
   print "not empty."
  
if ():
   print "empty."
  
if (1):
   print "not empty."
if {}:
   print "empty."
  
if {1:0}:
   print "not empty."