您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

3 个月前
12345678910
  1. # Read file into an array of strings
  2. def fs_aux_readFile(
  3. fileName: str
  4. ) -> [str]:
  5. lines = []
  6. with open(fileName) as file:
  7. for line in file:
  8. lines.append(line.rstrip())
  9. return lines