目前分類:python (2)

瀏覽方式: 標題列表 簡短摘要
def re(x):
    return x == 1 and 1 or re(x - 1) + x

print(re(10))


bnn00023 發表在 痞客邦 留言(0) 人氣()

這篇是我的學習心得,這次學習的文章為:http://blog.castman.net/%E6%95%99%E5%AD%B8/2016/12/19/python-data-science-tutorial-1.html

1.使用requests抓取網頁資料

bnn00023 發表在 痞客邦 留言(0) 人氣()