• 2021-04-14
    若文本内容 abc.txt 中的内容如下:abcdef阅读下面的程序:file = open ( ‘abc.txt’ , ‘r’)s = file.readline()s1 = list(s)print(s1)上述程序执行的结果是()。
  • 举一反三