python算法与数据结构(第一部分:入门)2

2021/5/7 12:26:38

本文主要是介绍python算法与数据结构(第一部分:入门)2,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

注意,类中的方法,self这个参数是必须的。

>>> class fraction:
    def __init__(self,top,bottom):
        self.num = top
        self.den = bottom
    def show():
        print("%d / %d"%(self.num,self.den))


>>> my = fraction(3,5)
>>> my.show()
Traceback (most recent call last):
File "<pyshell#14>", line 1, in <module>
my.show()
TypeError: show() takes 0 positional arguments but 1 was given

 

 

 

>>> class fraction1:
    def __init__(self,top,bottom):
        self.num = top
        self.den = bottom
    def show(self):
        print("%d / %d"%(self.num,self.den))


>>> my = fraction1(3,5)
>>> my.show()
3 / 5
>>>



这篇关于python算法与数据结构(第一部分:入门)2的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程