📜  python 可选参数 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:29.289000             🧑  作者: Mango

代码示例4
#set the variable = to None, and then write over none if there the argument 
#is used.
async def joke(ctx, args=None):
    if args == None:
        await ctx.send('you :D')
    else:
        await ctx.send('%s is the true joke' % args)