Used to store things, in quotes
What is a String?
Displays how many characters in a String.
What is len()?
Insert a new line.
What is "\n"?
The data type result for conditional statement?
What is boolean?
T and F is
What is False?
Used to store "floating point" numbers.
What is double?
Convert a String to capital letters.
What is .upper()?
Insert a tab.
What is "\t"?
>
What is greater than?
T or F is
What is True
Used to store whole numbers.
What is int?
Grabs a value from the keyboard input.
What is raw_input() or input()?
Insert a backslash.
What is "\\"?
<=
What is less than or equal to?
T and F or F is
What is False
Can hold 2 values, true or false.
What is boolean?
Grabs a portion of a String.
What is a slice [x:x]?
Insert a quote.
What is "\""?
==
What is equals?
(T and F) or (F == F)
What is True
Used to hold a single character.
What is char?
Used to change a raw_input into an int.
What is typecast int(x)
Insert a single quote character.
What is "\'"?
!=
What is NOT equal?
not(F and T or T)
What is False