[Solved] why here Twice run program

Issues with Code : Object creation is not correct for password class. also argument self is not passed to class method . Fixed Code 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 —> … Read more

[Solved] the advantage of reading open source code [closed]

Well, many of the bigger open source projects are collaborations between many people: Thus you do have a chance of finding a project written by good developers, and therefore improve your own coding style. Of course, it all depends if you actually memorise the stuff you read or not – But I guess you wouldn’t … Read more