name='aaa' email='bbb@gmail.com' addr='seoul' def print_business_card(name,email,addr): print('name:%s'%name) print('email:%s'%email) print('address:%s'%addr) print_business_card(name,email,addr) >>> name:aaa email:bbb@gmail.com address:seoul parameter A parameter is the variable listed inside the parentheses in the function definition. argument An argument is the value that is sent to the funct..