-
What string value does Python think of as
False
in an if
statement?
the empty string
-
Write the Python expression that gives the value of the first command line argument.
sys.argv[1]
-
Write a Python expression that returns the intersection of the sets
A and B.
A.intersection(B) or B.intersection(A)
-
Write the Python statement you would use to stop execution of a script.
sys.exit()
-
What are the entries in a dictionary?
key - value pairs
-
What does the + in a regular expression match?
1 or more occurrences of the character that comes before it
-
Write the Python statement to create an empty dictionary named
empty.
empty = {}
-
What does the * in a regular expression match?
0 or more occurrences of the character that comes before it
-
Write the Python expression you would use to get a list of all entries in your current directory.
os.listdir('.')
-
What are three things are found in a regular expression?
ordinary characters, meta-characters, character classes
-
Can a value appear more than once in a set?
no
-
Write the Python statement you would use to change your current directory to your parent directory.
os.chdir('..')
-
Can the key in a dictionary entry be any data type?
no. you can only use values that are immutable, that cannot be changed
-
What does the . (dot) in a regular expression match?
one occurrence of any character, except the newline
-
Write a Python expression that returns the union of the sets
A and B.
A.union(B) or B.union(A)
The following questions require you to write code.