'How can i use placeholder after send buttons to user concurrently

In Python Telegram bot i was using this code to make placeholder and replymarkup but I don't see like that in telethon.

reply_keyboard = [
        ['test']
    ]
    reply_keyboard_markup = ReplyKeyboardMarkup(keyboard=reply_keyboard,one_time_keyboard=True,resize_keyboard=True,input_field_placeholder='pm')
    update.message.reply_text('''test
''',reply_markup = reply_keyboard_markup)

enter image description here



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source