zx
Сен. 13, 2007 01:21:19
Как можно заменить exec в подобном коде:
def input():
print “hello”
exec raw_input(“”)
ну вводим ессно ‘input()’
и стоит ли заменять exec
pythonwin
Сен. 13, 2007 08:49:14
>>> def input():
… print “hello”
…
>>> c = raw_input(“”)
input
>>> if c in dir(): exec c+'()'
…
hello
>>>