In Python, this operator checks if two values are equal.
What is ==?
Identify the letter printed from these lines of code: words = "GIS Rules!" print words[4] (hint: index)
What is 'R'?
The result of 9 / 5
What is 1.8?
This function allows user input text to be assigned to a variable.
What is input()?
This data structure stores pairs of keys and values and is created using curly braces.
What is a dictionary?
This method returns the number of occurrences of a substring in a string.
What is count()?
This flow control structure repeatedly executes a block of code as long as a specified condition is true.
What is a while loop?
This method converts a string to all uppercase letters.
What is upper()?
This method is used to add an item to the end of a list.
What is append()?
This method replaces one part of a string with another part. For example, "hello world".replace("world", "there") returns "hello there".
What is replace()?