阅读下面的一段程序:p110 sum=0 for i in range(100): if(i%10): continue sum=sum+i print(sum)执行程序,最终输出的结果是(
A. 5050
B. 4950
C. 450
D. 45
阅读下面一段程序: 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。