第15564题 单选题
下列关于处理data.txt单词文件的Python程序段功能的说法,正确的是?

小张近阶段要学习的英文单词存储在data.txt文件中,文件每行存储一个单词,内容如下:

China
computer
machine
capsule
serial

处理该文件的Python程序段如下:

file = open("data.txt")
for word in file:
    if word[0:1] == "c":
        continue
    else:
        print(word)
file.close()
A

输出包含"c"(区分大小写)的单词

B

输出以"c"开头(区分大小写)的单词

C

输出以"c"开头(不区分大小写)的单词

D

输出不是以"c"开头(区分大小写)的单词

程序运行统计
暂无判题统计