Python3:在类内部的func中访问func

时间:2017-11-22 02:36:33

标签: python-3.x class

我正在玩并测试数据结构并注意到如果你做class.list [0]或def.list [0]你可以在类或def函数中打印一个列表,所以我试着看看如何它可以在类中添加func而不是我想要在值的末尾添加更多的点来链接它们,它似乎不会超过1值。

for x in seq:
    count += int(x)
    new = count + 64
    if int(x) < 2 and new < 90:
        st = st + " " + chr(new+1)
    elif int(x) >= 2 and new < 90:
        st = st + "-" + chr(new) + " " + chr(new+1)
    elif int(x)<2 and new == 90:
        st = st
    else:
        st = st + "-" + chr(new)

return st

在这种情况下,是否有办法将(或其他任何东西)打印到嵌套在那里的值?这个值的地址是什么?

0 个答案:

没有答案