python3 获取文件路径

import os
import sys

print(__file__) #获取当前相对 路径
print(os.path.abspath(__file__)) #动态获取绝对路径
print(os.path.dirname(os.path.abspath(__file__)))

BASE_DIR = os.path.dirname(os.path.abspath(__file__))

#sys.path.append(BASE_DIR)#添加环境变量

#import conf,core

# from conf import setting
# from conf import main

 

读取json文件:

import json
import os  
import sys 

BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))  
s1 = '\\'
file_lo = s1.join((BASE_DIR,"db","accounts","abc.json"))
 
with open(file_lo,'r') as f:
    json_str = json.loads(f.read())
    print(json_str)

输出为:

{'status': 0, 'password': 'abc', 'pay_day': 22, 'balance': 15974}

六、有兴趣接电子设计相关小型项目的请加下群,每个项目一般在1000元以内,非诚勿扰

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值