#Functions #Functions are followed by the 'def' keyword #Name your function def myfunc(): a = 'This is a func' #Calling the function myfunc() print(myfunc())