예제 #1
0
def factor(update: Update, context: CallbackContext):
    args = context.args
    message = update.effective_message
    message.reply_text(newton.factor("{}".format(args[0])))
예제 #2
0
def factor(bot: Bot, update: Update, args: List[str]):
    message = update.effective_message
    message.reply_text(newton.factor('{}'.format(join(args))))
예제 #3
0
def factor(bot: Bot, update: Update, args: List[str]):
    message = update.effective_message
    message.reply_text(newton.factor("{}".format(args[0])))
예제 #4
0
def factor(update: Update, context: CallbackContext):
    args = context.args
    message = update.effective_message
    message.reply_text(newton.factor(f"{args[0]}"))
예제 #5
0
def factor(update, context: List[str]):
    args = context.args
    message = update.effective_message
    message.reply_text(newton.factor('{}'.format(args[0])))