■ No argument, No retrun (인자가 없고, 리턴이 없는 경우)
def hello_function():
print("Hello, world!")
hello_function()
Output
Hello, world!
■ Yes argument, No retrun (인자가 있고, 리턴이 없는 경우)
def hello_function(name):
print("Hello, it's me. {0}!" .format(name))
hello_function("Swan")
Output
Hello, it's me. Swan!
■ Yes argument, Yes retrun (인자가 있고, 리턴이 있는 경우)
def multiply_five(number):
return number*5
multiply_five(5)
Output
25
No comments:
Post a Comment