我编写这个脚本是为了从文本输入构建一个非常基本的网页。它会无限地逐行运行,直到用户在最后一行输入“q”并按回车键。问题是,如果我在前面输入一个制表符或一些空格,它们不会写入最终的 html 文件。我在这个脚本中包含了两个方法,它们都给出了相同的输出......第二个被注释掉了
from sys import argv
script, file = argv
boom = open('%s.html'% file,'w')
header = """<html>
<head>
<style>
body {background-color:black; color:white;}
</style>
</head>
<body>
"""
footer = """</body>
</html>
"""
boom.write(header)
#lines = ''
#lines = list(lines)
while True:
line = raw_input(">")
if line != "q":
# lines.append('%s<br>\n' % line)
boom.write('%s<br>\n' % line)
else:
# string = ''.join(lines)
# print string
# boom.write(string)
boom.write(footer)
boom.close()
exit(0)