我已经有一个ping命令,但是最近我的输出是0.0。在这种情况下可能是四舍五入,但我没有回溯错误。有没有办法让我的ping输出像这样显示?
0.123
我的代码:
@client.command()
async def ping(ctx):
await ctx.send('Pong! {0}'.format(round(client.latency, 1)))
答案 0 :(得分:0)
只需删除round()或将数字1更改为更高的数字
@client.command()
async def ping(ctx):
await ctx.send('Pong! {0}'.format(client.latency))