Python-first-Practice
Python-first-Practice copied to clipboard
Only use 3 days to get the basic concept of Python (Chinese Version | Data Scientist Direction)
print (type(bd)) 处 应该是b*d print (type(bd)) # return the type of bd NameError: name 'bd' is not defined
一处笔误
day1 break 和 continue 段中 cantinue 应为 contine
“Start Spyder and compute 76 by typing” 感觉应该翻译为: “启动Spyder并通过键入以下命令计算76” 而不是“通过键入以下命令启动Spyder并计算76”
感谢作者解决了全英文阅读障碍的门槛,只是里面的高等数学也是早就丢得干净了。看着一脸懵逼。唉~ 有什么好的解决这等障碍的书籍推荐吗?
 用文字来说,就是费波那契数列由0和1开始,之后的费波那契系数就是由之前的两数相加而得出。首几个费波那契系数是: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233……(OEIS中的数列A000045) 特别指出:0不是第一项,而是第零项。
fix a little bug