Найти - Пользователи
Полная версия: Как заменить exec?
Начало » Python для экспертов » Как заменить exec?
1
zx
Как можно заменить exec в подобном коде:


def input():
print “hello”

exec raw_input(“”)

ну вводим ессно ‘input()’
и стоит ли заменять exec
pythonwin
>>> def input():
… print “hello”

>>> c = raw_input(“”)
input
>>> if c in dir(): exec c+'()'

hello
>>>
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Powered by DjangoBB