(save_path, filename, slist)
| 8 | |
| 9 | |
| 10 | def StringListSave(save_path, filename, slist): |
| 11 | if not os.path.exists(save_path): |
| 12 | os.makedirs(save_path) |
| 13 | path = save_path+"/"+filename+".txt" |
| 14 | with open(path, "w+") as fp: |
| 15 | for s in slist: |
| 16 | fp.write("%s\t\t%s\n" % (s[0].encode("utf8"), s[1].encode("utf8"))) |
| 17 | |
| 18 | def Page_Info(myPage): |
| 19 | '''Regex''' |