欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

python 在类中从一个函数中调用另一个函数中的变量

程序员文章站 2022-03-10 18:23:14
class bldy(): def one (self): a = 5 return a # return 返回到self def two(self): b = 10 return b def sum(self, a, b): # 你给我两个参数,我就执行下面的方法 c = a + b return ......

class bldy():
  def one (self):
    a = 5
    return a         # return 返回到self

  def two(self):
    b = 10
    return b  

  def sum(self, a, b):  #  你给我两个参数,我就执行下面的方法
    c = a + b
    return c


if __name__ == '__main__':
  dy = bldy()          #  实例化
  a = dy.one()  #  调用方法
  b = dy.two()
  c = dy.sum(a, b)  #  传入两个参数 
  print('c = %d'%c)    # 输出 c=15   格式化输出(变量输出用这种方法,爽的不要不要的^-^)