from pathlib import Path def true_stem(path): stem = Path(path).stem return stem if stem == path else true_stem(stem) ...
確定! 回上一頁