abs(): argument
a.upper(): method
1.定义一个带parameters的函数:
def addition(x,y): return (x+y)
x,y是parameters
当调用函数时,3,4就是传入的arguments
addition(3,4)