Fungsi di Python

# functions in python look like this
def hello_world(): 
  print("Hello world")
  
hello_world()
Zany Zebra