#!/usr/bin/python# coding utf-8def father (name): print('父亲名字 %s' %name) def son(name2): print('儿子名字 %s'%name2) def grandson(name3): print('孙子名字 %s' %name3) grandson('赵') son('王')father('张')执行结果:
父亲名字 张儿子名字 王孙子名字 赵