set intersection : Set : Data Structure : Python examples (example source code) Organized by topic

C++
PHP
Python


Python  »  Data Structure   » [  Set  ]  Screenshots 
 



set intersection



import sets

magic_chars = sets.Set('abracadabra')

poppins_chars = sets.Set('supercalifragilisticexpialidocious')

print ''.join(magic_chars & poppins_chars)    



           
       
Related examples in the same category
1.  Use set to key vowels Use set to key vowels
























Home| Contact Us
Copyright 2003 - 04 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.