exec tag

4 questions


1 answers
113 views
0
Problems with Korean strings with PHP shell_exec

Hello, I had a problem while making it because I thought it would be faster to learn while developing Python for the first time.As the image code below php, shell_exec delivers two factor values to Py...

1 years ago

1 answers
65 views
0
Is there a way to execute the Python code stored in the form of a string?

Is there a way to execute the Python code stored in the form of a string?I thought my friend told me I could do it, but I didn't listen because I thought I didn't need it ㅜ

1 years ago

1 answers
122 views
0
Why can't I use ll instead of ls - l when I use the find command?

find . -name test -exec ls -l {} \; Why can't I use ll instead of ls -l when I use this command?Can't I use it because it's an alias?This is centOS6.

2 years ago

1 answers
115 views
0
Questions about Python exec

In Python, we made a calculation using exec and eval in the for statementlists = [a=1, b=2, c=a+b]returned_list = []for x in lists: exec(x) returned_list.append(eval(x))print(returned_list)If I write ...

2 years ago

© 2024 OneMinuteCode. All rights reserved.