Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from icecream import ic
- def function_test(parameter):
- return parameter + 5
- value = function_test(5)
- print(value)
- # now how to debug:
- ic(function_test(5))
- #################
- # Efekt wykonania
- 10
- ic| function_test(5): 10
Advertisement
Add Comment
Please, Sign In to add comment