JkSoftware

Day 6 - Functions

Nov 9th, 2021 (edited)
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. print("hello")
  2. num_ = len("hello")
  3. print(num_)
  4.  
  5.  
  6. def my_function():
  7.     print("hello")
  8.     print("bye")
  9.  
  10.  
  11. my_function()
Add Comment
Please, Sign In to add comment