Answers for "run python commands from string"

8

python execute string

a = """
A = 5
if A > 0 :
	print("A Is Positive")
elif A == 0 : 
	print("A Is Equal To 0")
else : 
	print("A Is Negative")
"""
exec(a)
>>> A Is Positive
#you can also use eval(string) for asyncio
Posted by: Guest on May-31-2020

Python Answers by Framework

Browse Popular Code Answers by Language