Skip to content

Latest commit

 

History

History
39 lines (32 loc) · 392 Bytes

File metadata and controls

39 lines (32 loc) · 392 Bytes

- Unary Minus

Description

Returns True if both x and y are true..

Syntax

A and B

A
Any valid object.
B
Any valid object.

Return Value

#TODO

Time Complexity

#TODO

Example

>>> True and True
True
>>> True and False
False
>>> False and True
False
>>> False and False
False

See also

#TODO