#!/usr/bin/python # -*- coding: UTF-8 -*- class A(object): # Python2.x 记得继承object def add(self, x): y = x+1 print(y) class B(A): def add(self, ...
確定! 回上一頁