HW2 <<
Previous Next >> HW2-2 查看加退選
HW2-1 取得四設一甲分組數列
Kaggle Notebook: https://www.kaggle.com/a40923232/cp2020hw2-1
import urllib.request
url = "https://nfulist.herokuapp.com/?semester=1091&courseno=0776"
cp1b = []
for line in urllib.request.urlopen(url):
cp1b.append(int(line.decode('utf-8').rstrip()))
print(cp1b)
print("共" + str(len(cp1b)) + "筆")
#print("https://github.com/" + str(cp1b) + "/cp2020" /n)
def site(num):
print("https://github.com/" + str(num) + "/cp2020")
for num in cp1b:
site(num)
感謝組員的指導。
HW2 <<
Previous Next >> HW2-2 查看加退選