Advertisement
hackloper775

dic4

Feb 17th, 2013
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.22 KB | None | 0 0
  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)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement