标签: python telegram steam
通常,我使用电报bot检查我的Steam帐户的状态以及花费的游戏时间。 目前,我正在使用bot.send_message(message.chat.id, f)命令,其中 f = str(nick[x]) + " || " + str(status[x]) + " || " + str(hours[x]) + "\n"。我使用for循环来发送每个帐户的详细信息,如here.所示 有没有办法将其作为一条消息发送?谢谢!
bot.send_message(message.chat.id, f)
f = str(nick[x]) + " || " + str(status[x]) + " || " + str(hours[x]) + "\n"