Guest User

Untitled

a guest
Aug 23rd, 2022
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.12 KB | None | 0 0
  1. sample_dict = {'asd':123, 'def': 456}
  2.  
  3. def try_dict(**sample_dict):
  4.     print(sample_dict)
  5.  
  6. try_dict(sample_dict)
Advertisement
Add Comment
Please, Sign In to add comment