How does join work? a. You write separator. join ('a', 'b', 'c', 'd', ...) where 'a', 'b', 'c', 'd' can be replaced with other strings, but isn't in a list. b. The separator must be a single character, and you use list. join (separator). c.
Answers (1)