This module is a very simple way to ask questions and create complete forms in discord.py without using an entire 30 lines!
from discord.ext.forms import Form
from discord.ext import commands
bot = commands.Bot(command_prefix="!")
@bot.command()
async def testform(ctx):
form = Form(ctx,'Title')
form.add_question('Question 1','first')
form.add_question('Question 2','second')
form.add_question('Question 3','third')
result = await form.start()
return result
>> result.first
"This was my response to question 1"
Using this module, you can make a 3 question form with only 5 lines of code.