jonay

abriendo nuestras webs favoritas

Oct 14th, 2014
296
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.32 KB | None | 0 0
  1. import webbrowser
  2.  
  3. print("""elige
  4. 1-facebook
  5. 2-youtube""")
  6.  
  7. def facebook():
  8.     webbrowser.get('windows-default').open('http://www.facebook.com')
  9.  
  10.    
  11. def youtube():
  12.     webbrowser.get('windows-default').open('http://www.youtube.com')
  13.    
  14.    
  15. ab = input("")
  16.    
  17.    
  18. if ab == "1":
  19.     facebook()
  20.    
  21.    
  22. elif ab =="2":
  23.     youtube()
Advertisement
Add Comment
Please, Sign In to add comment