Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #!/usr/bin/env python3
  2.  
  3. mi_dic = {
  4.     "Linux" : ["Arch","Gentoo","Ubuntu","openSUSE"],
  5.     "BSD" : ["PC-BSD","FreeBSD"],
  6.     "Darwin" : "iOS",
  7. }
  8.  
  9.  
  10. for i in mi_dic["Linux"]:
  11.     print ("Una distro famosa de Linux es :", i)