python学习笔记(一) 相关类库地址

第一部分

python 相关类库下载地址

[link](https://www.lfd.uci.edu/~gohlke/pythonlibs/#xgboost)

使用说明
下载对应的whl文件,放到对应的文件夹中,pip install 对应的文件名称既可

python之歌

哈哈,原来这个歌可以 import this

The Zen of Python, by Tim Peters

Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren't special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.
Although that way may not be obvious at first unless you're Dutch.
Now is better than never.
Although never is often better than *right* now.
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let's do more of those!

查看当前notebook的路径
import os
print (os.path.abspath(’.’))

猜你喜欢

转载自blog.csdn.net/qq_35275233/article/details/86428390