Python short course: Function basic in Python
To define a function in python, first, use 'def' to declare that a function, then follow the function name and parameters. Following this is the function body. An easy example is below.
In [1]: def func_test(a):
...: print(a)
...:
In [2]: func_test('I love Python')
I love Python
Comments
Post a Comment