所以我有一个带有格式的对话的txt文件
姓名和日期 消息
姓名和日期 消息
等
我准备好了html / CSS模板和一个读取txt的python脚本
我想拿每个名字和日期 在txt上的消息,并在标签/ class
下用它们填充html例如
<ul class="chat">
<li class="chat__bubble chat__bubble--rcvd chat__bubble--stop">name date and the message </li>
<li class="chat__bubble chat__bubble--rcvd chat__bubble--stop">name date and the message </li>
我不想要一个代码,而是一个关于如何处理它的建议或示例。任何想法?
答案 0 :(得分:0)
如果是我,我可能会使用open(&#39; filename&#39;,&#39; r&#39;)并将内容的每一行设置为一个列表然后遍历列表并写入它到css / html文档中的某个起始点。对于标签,您可以将它们分配给变量并使用写入函数.write(aTag + textfromchat + endTage)等等。