
Answer-first summary for fast verification
Answer: if day_of_week == 1 and review_period
The correct line of code uses `==` to compare `day_of_week` to 1, which is the proper way to check equality in Python, as `=` is an assignment operator. It also correctly checks the boolean value of `review_period` without comparing it to the string "True". This approach avoids unnecessary comparisons and syntax errors, adhering to Python's best practices for conditional checks.
Author: LeetQuiz Editorial Team
Ultimate access to all questions.
A data engineer is tasked with executing the final segment of a Python script under specific conditions: the variable day_of_week must be 1 and review_period must be True. Which line of code correctly initiates this segment?
A
if day_of_week = 1 and review_period = “True“
B
if day_of_week == 1 and review_period == “True“
C
if day_of_week = 1 & review_period: = “True“
D
if day_of_week == 1 and review_period
E
if day_of_week = 1 and review_period
No comments yet.