(PCEP) Certified Entry-Level Python Programmer Practice Test
(PCEP) Certified Entry-Level Python Programmer FREE PCEP Using `sep=` and `end=` in `print()` Questions and Answers
What is the output of the following code?
```python
print('apple', 'banana', 'cherry', sep=',')
```
Select your answer
A
apple banana cherry
B
apple,banana,cherry
C
('apple', 'banana', 'cherry')
D
apple, banana, cherry
Hint