阅读下面一段程序: words = "Hello,Python" result = words.capitalize() result_another = words.title() print(result) print(result_another) 运行程序,最终输出的结果为(
A. hello,Python,Hello,Python
B. hello,python,hello,python
C. Hello,python,Hello,Python
D. Hello,python,hello,python。