如何在Python中输入2个文件然后输出它们?

发布于 2024-10-18 00:07:35 字数 101 浏览 1 评论 0原文

我有一个为网页编写的代码,我需要知道如何获取 2 个数据文件并将它们导入到一个数组中,然后将数据输出到我的 html 站点上的表格中。

这2个数据文件是我电脑上的txt文件

I have a code written for a webpage and I need to know how to take 2 data files and import them into an array then output the data in a table on my html site.

the 2 data files are txt files that are on my computer

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

短叹 2024-10-25 00:07:35

好吧,我猜测您只想创建一个 html 表,文本文件中每个数据行有 1 行。

file1=open("input1.txt",'rU')
file2=open("input2.txt",'rU')
lines = file1.readlines() + file2.readlines()
html = "<html>\n<body>\n<table>"
for line in lines:
  html += "<tr><td>" + line + "</td></tr>\n"
html += "</table>\n</body>\n</html>"

output = open('output_file.html','w')
output.write(html)

我不知道这是否是您想要的,但这就是我上面所说的。

Well I'm going to take a guess that you want to just create an html table that has 1 line per data line in the text file.

file1=open("input1.txt",'rU')
file2=open("input2.txt",'rU')
lines = file1.readlines() + file2.readlines()
html = "<html>\n<body>\n<table>"
for line in lines:
  html += "<tr><td>" + line + "</td></tr>\n"
html += "</table>\n</body>\n</html>"

output = open('output_file.html','w')
output.write(html)

I don't know if that is what you were looking for, but that does what I said above.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文