Advertisement
hackloper775

dic3

Feb 17th, 2013
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.20 KB | None | 0 0
  1. #!/usr/bin/env python3
  2.  
  3. mi_dic = {
  4.     "Ubuntu" : "Linux",
  5.     "Debian" : "Linux",
  6.     "PC-BSD" : "BSD",
  7.     "iOS" : "Darwin",
  8.     "Gentoo" : "Linux "
  9. }
  10.  
  11. for i in mi_dic:
  12.     print (i, "es de nucleo :", mi_dic[i])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement