0

这是一个 test.py 脚本,将字典写入包含 TOML 格式数据的文件:

def createtoml(path):
    dst_file = "config.toml"
    if __name__ == "__main__":
    a = {
        'download':{
            'path':path
            }
    with open(dst_file, 'w') as f:
        r = toml.dump(a, f)

name=input('Name:')
path="F:\\\\"+name
createtoml(path)

如果 name 的输入是日文或中文,例如まひろ,则 TOML 格式的数据为: [download] serial = "" path = "F:\\\\"

TOML 格式的数据如何以日文或中文显示,例如path = "F:\\\\まひろ"

4

0 回答 0