選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

23 行
407 B

import os
from os.path import exists
def readlink(path):
try:
return os.readlink(path)
except FileNotFoundError:
return None
def readFileLines(path):
if exists(path):
with open(path, 'r') as f:
for line in f:
yield line.rstrip("\n")
def readFile(path):
if exists(path):
with open(path, 'r') as f:
return f.read()