Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
90 views
in Technique[技术] by (71.8m points)

python - Execute large code snippet of string on one line

I'm not able to find an answer to this for some reason - I'm looking to execute a large string code snippet as python code

For example the following code:

def multiply_num_by_5(num): 
    return 5*num 
multiply_num_by_5(4)

And now as one line: exec("def multiply_num_by_5(num): return 5*num print(multiply_num_by_5(4))")

However this returns a syntax error.

Is this possible to do (without modifying the string of code itself)? Is there a common parsing technique / library which allows running such code?

NOTE: I'm aware I can run the following. Here the print line is correctly indented. However this wouldn't be 'one line':

exec('''def multiply_num_by_5(num): return 5*num 
print(multiply_num_by_5(4))''')
question from:https://stackoverflow.com/questions/65923716/execute-large-code-snippet-of-string-on-one-line

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Inserting a return character works for me

exec("def multiply_num_by_5(num): return 5*num
print(multiply_num_by_5(4))")

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...