stage3-ag3

  • Home
    • Site Map
    • reveal
    • blog
  • About
  • Stage3
    • Task1
    • Task2
    • Task3
Stage3 << Previous Next >> Task2

Task1

# open file, default is read mode, since txt content no chinese char
# no encoding = "UTF-8" is needed
with open("stage3_2a.txt") as fh:
    # readlines will read into the whole line and put into list format
    # has \n at the end of each line
    data = fh.readlines()
#print(len(data))
for i in range(len(data)):
    group = data[i].rstrip("\n").split("\t")
    print(group)
# the following will use group data to generate needed html

Stage3 << Previous Next >> Task2

Copyright © All rights reserved | This template is made with by Colorlib