我写了这个脚本,从文本输入构建了一个非常基本的网页。它会无限期地逐行进行,直到用户在最后一行上键入“ 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)
回首忆惘然
相关分类