Create a new portable system <<
Previous Next >> Bython reads exam scores
W9
get score
step1
利用Byrhon 讀取url中的資料
url = "https://gist.githubusercontent.com/mdecycu/07f0f0817115a68d55d6ca603c5ab393/raw/239f4eb84715978daead6ac1f231af7f190a2a5e/1aw5.txt"
#讀取url取掉跳行
data = open(url).read().split("\n")
data = data[1:]
for i in data:
#print(i)
# ':' 隔開取第一位
stud = i.split(":")[0]
# ':' 隔開取第二位
score = i.split(":")[1]
print(stud, score)
Create a new portable system <<
Previous Next >> Bython reads exam scores