昔よく
def isdir(path):
result = os.path.isdir(path)
if result:
return True
else:
return False
とかやってたんだけど、実は
def isdir(path):
return os.path.isdir(path)
で済むことに気づいた時は衝撃が走った(伝われ)。
昔よく
def isdir(path):
result = os.path.isdir(path)
if result:
return True
else:
return False
とかやってたんだけど、実は
def isdir(path):
return os.path.isdir(path)
で済むことに気づいた時は衝撃が走った(伝われ)。
senooken JP Social is a social network, courtesy of senooken. It runs on GNU social, version 2.0.2-beta0, available under the GNU Affero General Public License.
All senooken JP Social content and data are available under the Creative Commons Attribution 3.0 license.