ABIX_Edukacja

icecream_01

Nov 6th, 2022
1,654
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.24 KB | None | 0 0
  1. from icecream import ic
  2.  
  3.  
  4. def function_test(parameter):
  5.     return parameter + 5
  6.  
  7.  
  8. value = function_test(5)
  9. print(value)
  10.  
  11. # now how to debug:
  12. ic(function_test(5))
  13.  
  14.  
  15. #################
  16. # Efekt wykonania
  17.  
  18. 10
  19. ic| function_test(5): 10
Advertisement
Add Comment
Please, Sign In to add comment