PythonとJsonに関する質問があります。 私はdiscordを使ってdiscordのためにbotをコーディングしています。私はconfigファイルを持っていました。私のコードでは、Pythonファイルにある変数の文字列を置き換える必要があります。文字列をJsonのPythonに置き換えてください。
これは私の現在のコードです:
#change prefix
@bot.command(pass_context=True)
async def prefix(ctx, newprefix):
with open("config.json", 'a+') as f:
stringified = JSON.stringify(json)
stringified.replace('"prefix" : prefix, "prefix" : newprefix')
await ctx.send("Prefix set to: `{}`. New prefix will be applied after restart.".format(newprefix))
author = ctx.message.author
print(author, "has changed the prefix to: {}".format(newprefix))
と:私はコマンド入力すると
{
"nowplaying":"with buttons",
"ownerid":"173442411878416384",
"prefix":"?",
"token":"..."
}
:?prefix *newprefix*
を、不和や端末での出力がない、何も変わりません。誰も私にこれを行う方法を示すことができますか?
あなたが 'newprefix' は 'プレフィックス' を置換したいですか? – zaidfazil