Ultimate access to all questions.
Upgrade Now 🚀
Sign in to unlock AI tutor
Which Python control flow statement correctly executes a block of code only when the variable isValid is 1 and the variable isRunnable is True?
isValid
1
isRunnable
True
A
if isValid = 1 and isRunnable = True:
B
if isValid == 1 and isRunnable:
C
if isValid == 1 and isRunnable = "True":
D
if isValid = 1 and isRunnable:
E
if isValid == 1 && isRunnable = True: