为什么在这里 Twice 运行 程序

why here Twice run program

class password:
    def pas1():
        pas = []
        tedad = int(input('how many do you have information ? '))

        for i in range(1,tedad):
            b=input('enter : ')
            pas.append(b)

        print('this is your pas ---> {}' . format(pas))

import nnk
me=nnk.password.pas1()

为什么在这里 Twice 运行 pas1 。我想要 运行 def pas1() 一次,然后转到下一行。这里问我两次 how many do you have information ? 两次 ask me enter :

代码问题:

对象创建的密码 class 不正确。 参数 self 也没有传递给 class 方法。

固定代码

class password:

    def pas1(self):
        pas = []
        tedad = int(input('how many do you have information ? :  '))

        for i in range(1,tedad):
            b=input('enter : ')
            pas.append(b)

        print('this is your pas ---> {}' . format(pas))


me=password()
me.pas1()

输出

how many do you have information ? :  12
enter : 2
enter : 2
enter : 3
enter : 4
enter : 5
enter : 6
enter : 6
enter : 7
enter : 8
enter : 9
enter : 4
this is your pas ---> ['2', '2', '3', '4', '5', '6', '6', '7', '8', '9', '4']