Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

11 řádky
220B

  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