個人資料
歸檔
正文

語言及應試

(2022-02-28 17:14:00) 下一個

書籍: https://freepdf-books.com/ www.academic.edu blacowjoec1xxx4

https://www.tutorialspoint.com/questions_and_answers.htm

1.python

https://www.tutorialspoint.com/python/python_online_quiz.htm

def total(initial = 5, *num, **key):
   count = initial
   for n in num:
      count+=n
   for k in key:
      count+=key[k]
   return count
print(total(100,2,3, clouds=50, stars=100))

#no key-pair is given so result is 100+2+3+50+100=255

Scikit-learn lib is for machine learning. pylint/pycheck used to find bugs.

 

 

 

[ 打印 ]
閱讀 ()評論 (0)
評論
目前還沒有任何評論
登錄後才可評論.