# -*- coding: utf-8 -*- # @Author : YY def multiply_args(x, y): print("多参方法: x: {} y: {}".format(x, y)) def one_args(x): print("单个参方法: x: {} ".format(x)) def no_args(): print("无参方法")