Added text "the" (#31144)

This commit is contained in:
Dom
2019-04-15 05:14:49 -05:00
committed by The Coding Aviator
parent 53ea6e8a34
commit 4769fea6d0

View File

@ -1,7 +1,7 @@
--- ---
title: Python Calling Functions title: Python Calling Functions
--- ---
A function definition statement does not execute the function. Executing (calling) a function is done by using the name of the function followed by parenthesis enclosing required arguments (if any). A function definition statement does not execute the function. Executing (calling) a function is done by using the name of the function followed by parenthesis enclosing the required arguments (if any).
>>> def say_hello(): >>> def say_hello():
... print('Hello') ... print('Hello')