Guest User

Untitled

a guest
Jun 16th, 2018
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. server.findPathwaysByText (query= 'WP619', species = 'Mus musculus')
  2.  
  3. server.login (user='amarillion', pass='*****')
  4.  
  5. d = {'user':'amarillion', 'pass':'*****' }
  6. server.login(**d)
  7.  
  8. server.login(user='amarillion', **{'pass': '*****'})
  9.  
  10. def f(a, b):
  11. return a + b
  12.  
  13. kwargs = {"a": 5, "b": 6}
  14. return f(**kwargs) # same as saying f(a=5, b=6)
Add Comment
Please, Sign In to add comment