Advertisement
KodingKid

Basic defined Python functions

Apr 30th, 2021
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.22 KB | None | 0 0
  1. def function1():
  2.     print("This is a function.")
  3. function1()
  4. def function2():
  5.     print("This is another function.")
  6. function2()
  7. def function3():
  8.     print("Alright last time; this is my final function.")
  9. function3()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement