Здраствуйте ! Хотел сделать мини игрушку для бота в дискорд , так добавили кнопки , можно придумать что-то интересное .
Ближе к делу:
Я сделал мини кортеж , и выполнил функцию рандома , что-бы уже этот список добавить в кнопки. Но результатата нечего не даёт , консоль пуста.
koloda = ['one' , 'two', 'tho' , 'four' , 'inv']
pop = random.shuffle(koloda)
text = str(koloda)
bad_chars = ["'"]
for i in bad_chars :
test_string = text.replace(i, '')
intext = str(test_string)
test = random.randint(1, 1)
lous = random.randint(1, 10)
one = Button(style = ButtonStyle.green, label = ' 1', id='1')
two = Button(style = ButtonStyle.green, label = ' 2', id='2')
tho = Button(style = ButtonStyle.green, label = ' 3', id='3')
four = Button(style = ButtonStyle.green, label = '4 ', id='4')
inv = Button(style = ButtonStyle.green, label = ' 5', id='5')
embed1 = discord.Embed(description="Testing", color=0x7900ff)
message = await ctx.channel.send(embed=embed1 , components=['{}'.format(intext)])
upd:
Нужно на выходе:
message = await ctx.channel.send(embed=embed1 , components=[[one , two, tho , four , inv]])