第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()
{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析