Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import time as t
- def farg1():
- print("FUNCTION 1")
- def farg2():
- print("FUNCTION 2")
- def function(**kwargs):
- for i in kwargs:
- kwargs[i]()
- while True:
- function(f=farg1,s=farg2)
- print("----------------------")
- t.sleep(0.5)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement