用途:方便地将TXT显示在网页上txt=open("test_input.txt", mode='r') str="" for line in txt: for i in line: if(i==" "): str+=" " else: str+=i; ...
確定! 回上一頁