首先,我不确定 SO 是否适合这个问题,因此如有必要,请随时将其移至更合适的位置。
cmd_folder = os.path.realpath(os.path.abspath(os.path.split(inspect.getfile( inspect.currentframe() ))[0]))
我有这行代码。Python PEP 8 文档建议将行数限制为 79 个字符,以保持在较小屏幕上的可读性。
设计这行代码以符合 PEP 建议的最优雅的方式是什么?
cmd_folder = os.path.realpath(os.path.abspath(os.path.split
(inspect.getfile
( inspect.currentframe() ))[0]))
这是最合适的方法吗?有没有我没想到的更好的方法?