Midterm Study Flashcards
1
Q
Bool
A
returns True/False
2
Q
String
A
sequence of characters in parantheses “Word”
3
Q
Float
A
Any number, can include decimals
4
Q
Int
A
Integer values
5
Q
Inequality
A
!=
6
Q
equality
A
==
7
Q
less than or equal
A
<=
8
Q
greater than or equal
A
<=
9
Q
exponentiation
A
**
10
Q
returns length of input
A
len
11
Q
returns largest item in the input
A
max
12
Q
returns smalles item from its input
A
min
13
Q
and
A
evaluates to True if both operands are True
14
Q
or
A
evaluates to True if either operand is true
15
Q
not
A
evaluates to the negation of the operant (ie not True evaluates to False)