myParams = {"server":"mpilgrim", \
"database":"master", \
"uid":"sa", \
"pwd":"secret" \
}
#When a command is split among several lines with the line-continuation marker (“\”)
v = ('a', 'b', 'e')
(x, y, z) = v
#v is a tuple of three elements, and (x, y, z) is a tuple of three variables. Assigning one to the other assigns each of the values of v to each of the variables, in order.
(MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY) = range(7)
built-in range(7) function returns a list of integer
[0, 1, 2, 3, 4, 5, 6]