Path: csiph.com!usenet.pasdenom.info!news.albasani.net!newsfeed.freenet.ag!news2.euro.net!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'else:': 0.03; 'example:': 0.03; 'argument': 0.04; 'mrab': 0.05; '"__main__":': 0.07; '__name__': 0.07; 'calls.': 0.07; 'try:': 0.07; 'valueerror:': 0.07; 'python': 0.09; 'cmd': 0.09; 'func': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'sep': 0.09; 'tab': 0.09; 'def': 0.10; 'index': 0.13; '"enter': 0.16; '@classmethod': 0.16; 'arg):': 0.16; 'instance:': 0.16; 'reasonably': 0.16; 'received:80.91.229.3': 0.16; 'received:dip.t-dialin.net': 0.16; 'received:plane.gmane.org': 0.16; 'received:t-dialin.net': 0.16; 'wed,': 0.16; 'wrote:': 0.17; 'skip:{ 20': 0.17; 'examples': 0.18; '>>>': 0.18; 'input': 0.18; 'import': 0.21; 'stick': 0.22; "i'd": 0.22; 'example': 0.23; 'programming': 0.23; 'this:': 0.23; 'raise': 0.24; 'command': 0.24; 'pass': 0.25; 'header:User- Agent:1': 0.26; 'skip:[ 10': 0.26; 'select': 0.26; 'header:X -Complaints-To:1': 0.28; '>>>>': 0.29; 'argue': 0.29; 'dictionary': 0.29; 'index,': 0.29; 'selecting': 0.29; 'style.': 0.29; 'skip:_ 10': 0.29; 'class': 0.29; 'install': 0.29; 'function': 0.30; 'point': 0.31; 'could': 0.32; 'print': 0.32; '+0200,': 0.33; 'damage': 0.33; 'skip:j 20': 0.33; 'to:addr :python-list': 0.33; 'wrong': 0.34; 'thanks': 0.34; 'add': 0.36; 'received:org': 0.36; 'except': 0.36; 'skip:{ 10': 0.36; 'bad': 0.37; 'option': 0.37; 'skip:v 20': 0.37; 'subject:: ': 0.38; 'skip:o 20': 0.38; 'to:addr:python.org': 0.39; 'called': 0.39; 'header:Received:5': 0.40; 'your': 0.60; 'easy': 0.60; 'first': 0.61; 'more': 0.63; 'decided': 0.65; '(5)': 0.71; 'completion': 0.78; 'opt': 0.78; 'prompt': 0.78; 'descriptive': 0.84; 'approach.': 0.91; 'cause,': 0.93; 'poorly': 0.93 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Peter Otten <__peter__@web.de> Subject: Re: avoid the redefinition of a function Date: Thu, 13 Sep 2012 10:23:22 +0200 Organization: None References: <5050938F.7030105@gmail.com> <7944s.27167$CU7.24982@fx02.am4> <5050D568.9050208@mrabarnett.plus.com> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit X-Gmane-NNTP-Posting-Host: p50849bb7.dip.t-dialin.net User-Agent: KNode/4.7.3 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 125 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1347524593 news.xs4all.nl 6975 [2001:888:2000:d::a6]:43195 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:29020 MRAB wrote: > On 12/09/2012 19:04, Alister wrote: >> On Wed, 12 Sep 2012 18:56:46 +0200, Jabba Laci wrote: >> >>>> For example: >>>> >>>> def install_java(): >>>> pass >>>> >>>> def install_tomcat(): >>>> pass >>> >>> Thanks for the answers. I decided to use numbers in the name of the >>> functions to facilitate function calls. Now if you have this menu option >>> for instance: >>> >>> (5) install mc >>> >>> You can type just "5" as user input and step_5() is called >>> automatically. If I use descriptive names like install_java() then >>> selecting a menu point would be more difficult. And I don't want users >>> to type "java", I want to stick to simple numbers. >>> >>> Laszlo >> >> No No NO! >> you cant just pass user input to system calls without validating it first >> (google sql injection for examples of the damage unsanitised input can >> cause, it is not just as SQL problem) >> >> it is just as easy so select a reasonably named function as a bad one >> >> option=raw_input('select your option :') >> >> if option =="1": install_java() >> if option =="2": install_other() >> >> alternatively you cold add your functions into a dictionary an call them >> from that >> >> opts={'1':install java,'2':install_other} >> >> option=raw_input('select your option :') >> opts[option] >> >> Poorly named functions are a major example of poor programming style. >> >> one of the fundamental pillars for python is readability! >> > Or you could do this: > > > def install_java(): > "Install Java" > print "Installing Java" > > def install_tomcat(): > "Install Tomcat" > print "Installing Tomcat" > > menu = [install_java, install_tomcat] > > for index, func in enumerate(menu, start=1): > print "{0}) {1}".format(index, func.__doc__) > > option = raw_input("Select your option : ") > > try: > opt = int(option) > except ValueError: > print "Not a valid option" > else: > if 1 <= opt < len(menu): > menu[opt - 1]() > else: > print "Not a valid option" I'd still argue that a function index is the wrong approach. You can use tab completion to make entering descriptive names more convenient: import cmd class Cmd(cmd.Cmd): prompt = "Enter a command (? for help): " def do_EOF(self, args): return True def do_quit(self, args): return True @classmethod def install_command(class_, f): def wrapped(self, arg): if arg: print "Discarding argument {!r}".format(arg) return f() wrapped.__doc__ = f.__doc__ wrapped.__name__ = f.__name__ class_._add_method("do_" + f.__name__, wrapped) return f @classmethod def _add_method(class_, methodname, method): if hasattr(class_, methodname): raise ValueError("Duplicate command {!r}".format(methodname)) setattr(class_, methodname, method) command = Cmd.install_command @command def install_java(): "Install Java" print "Installing Java" @command def install_tomcat(): "Install Tomcat" print "Installing Tomcat" if __name__ == "__main__": Cmd().cmdloop()