Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. def my_function():
  2. print('Hello From My Function!')
  3.  
  4. def say_my_name(name):
  5. print('Your name is {}'.format(name))
  6.  
  7. def sum_two_numbers(a, b):
  8. return a + b
  9.  
  10. my_function()
  11. say_my_name('Sif')
  12.  
  13. print(sum_two_numbers(2, 8))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement