TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: How to learn about path configuration in Python

2 点作者 inreverse超过 1 年前
*

1 comment

siddheshgunjal超过 1 年前
Whenever setting up a path configuration in my python applications, I always use following at the beginning:<p><pre><code> import os os.path.dirname(os.path.abspath(__file__)) </code></pre> This will make sure that absolute path is taken for your file irrespective of the OS and solve the issue of file system when building multi-platform applications.