Is there a way to improve this code to make it shorter?
if date_a is None and date_b is None and date_c is None:
start_date = current_date
else:
if date_a is not None:
start_date = date_a
elif date_b is not None:
start_date = date_b
elif date_c is not None:
start_date = date_c
start_date = date_a or date_b or date_c or current_datewould work, assuming that no possible value of these variables (other thanNone) is a "falsy" value (zero, empty string, empty container, etc.)