我正在用python读取一个xml文件,然后在web gui上显示它阅读代码非常简单
def home ():
file = "sample.xml"
contents = open(file).read()
contents = contents.decode('utf-8')
然后有一大堆由html和css组成的前端代码......
但是...显示它..我希望每行不超过 200px?
即在n个像素之后插入一个换行符(??)..
我怎么能在python中做到这一点..