The code below doesn’t work as expected. Fix it to only print "Wear a coat" and "Wear gloves" when iscold is true.
A. if iscold: print("Wear a coat and wear gloves")
B. if iscold: print("Wear a coat")
C. if iscold: print("Wear gloves")
D. print("Wear a coat and wear gloves") if iscold

Q&A Education