Проверка шаблона шины для iOS
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

7 行
155B

  1. def readFile(fileName):
  2. lines = []
  3. with open(fileName) as file:
  4. for line in file:
  5. lines.append(line.rstrip())
  6. return lines