个人资料
归档
正文

语言及应试

(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)
评论
目前还没有任何评论
登录后才可评论.