我想创建一个 HTML 页面,用 n 种不同的颜色说 Hello World n 次,其中 n 是从不同存储库中的配置文件中读取的,并通过 python 程序生成页面,我们可以使用 Javascript 来表示颜色会更有帮助。我可以显示 hello world n 次,但我不知道如何更改颜色。这是我到目前为止编写的代码:
import ConfigParser
import webbrowser
configParser = ConfigParser.RawConfigParser()
configParser.read("/home/suryaveer/check.conf")
num = configParser.get('userinput-config', 'num')
num2 = int(num)
hello = """"hello world """
hello2 = hello*num2
message = """<html><head>
</head><body><p>"""+hello2+"""</p></body>
</html>"""
f = open('x.html', 'w')
f.write(message*num2)
f.close()
webbrowser.open("file:///home/suryaveer/x.html")
婷婷同学_
相关分类