So here's what I'm trying to do:
The inputs will be in the correct syntax for Python. For example for this part:
conditionOne = input()
what the input will be something like "and 5 % 2 == 0"
So basically if conditionOne contains "and 5 % 2 == 0" and I have a statement which reads:
if exampleVariable == 1:
I need the program to get the string in the variable and put it into the if statement so it becomes
if exampleVariable == 1 and 5 % 2 ==0:
Is there any way to do this?