Advertisement
Enrro

Definir una funcion para buscar videos y wikis

Sep 5th, 2014
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. import webbrowser
  2. def askUser():
  3. print ("search: ")
  4. busqueda= input()
  5. return busqueda
  6. def searchVimeo(What):
  7. link="http://vimeo.com/search?q="+What
  8. webbrowser.open(link)
  9.  
  10. x=askUser()
  11. searchVimeo(x)
  12. searchVimeo("the gazette")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement