You can use this assignment in your class!
Mastery Progress(100.0%)
i

Control Flow in Python Assignment

a = ["spam", "ham", "eggs"]
b = ["spam", "ham", "eggs"]
if a is b:
    print("True")
else:
    print("False")Figure A
You answeredJUST NOW

Did you like this question?

(Voting helps us personalize your learning experience!)
imgInstructor solution
Alec KretchAUG 26, 2022, 4:11:47 PM

Was this helpful?

(Voting helps us personalize your learning experience!)
imgControl Flow in Python Presentation (pages 4, 5)

Was this helpful?

(Voting helps us personalize your learning experience!)
Think you've got it?
  • a = ["spam", "ham", "eggs"]
b = ["spam", "ham", "eggs"]
if a == b:
    print("True")
else:
    print("False")Figure B
Select one of the following options:
  • A.
  • B.
Submit answer

Was this helpful?

(Voting helps us personalize your learning experience!)

You may exit out of this review and return later without penalty.