Guest User

Untitled

a guest
Jul 16th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. #all these will work the same
  2. u.createstats(energy=100, health=50, stamina=5, energy_max=100)
  3.  
  4. #OR
  5. to_create=dict(energy_max=100, energy=100)
  6. u.createstats(to_create, health=50, stamina=5)
  7.  
  8. #OR
  9. to_create = dict(energy=100, health=50, stamina=5, energy_max=100)
  10. u.createstats(to_create)
  11.  
  12. #OR
  13. u.createstats(**to_create)
Add Comment
Please, Sign In to add comment