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

Programming Using Python Day 2 Review

What do the boolean operators and, or, and not do in Python?

You answeredJUST NOW

(Student response here)

  • I want to share my response with my peers
  • Share as
    (Student name)
    Options
    • (Student name)
    • Anonymous

Did you like this question?

(Voting helps us personalize your learning experience!)
imgInstructor solution
Alec KretchSEP 19, 2021, 2:35:59 PM

and: Returns True if both statements are true. Examples: True and True is True, True and False is False.
or: Returns True if at least one statement is true. Examples: True or False is True, False or False is False.
not: Returns the opposite of the result of the expression. Examples: not True is False, not False is True.

Was this helpful?

(Voting helps us personalize your learning experience!)
Think you've got it?

What is the result of the following expression: not not True

Select one of the following options:
  • A.

    True

  • B.

    False

Submit answer

Was this helpful?

(Voting helps us personalize your learning experience!)

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