推荐几个较为不错的网站

知乎:数据分析资料汇总
tkinter    SciPy    Numpy
Numpy中文网    The Python Graph Gallery    MegEngine 1.6 文档
Matplotlib 3.4.3    Pandas    Pandas必会的方法汇总
Seaborn 0.11.2    Seaborn 0.9 中文文档    Pyecharts
菜鸟工具    在线Json格式转换    在线进制转换

dic = {
    "知乎:数据分析资料汇总":"https://zhuanlan.zhihu.com/p/69869004?utm_source=wechat_session&utm_medium=social&utm_oi=1221228697832865792&utm_campaign=shareopn",
    "tkinter":"https://docs.python.org/3/library/tkinter.html",
    "SciPy":"https://docs.scipy.org/doc/scipy/reference/index.html",
    "Numpy":"https://numpy.org/doc/stable/reference/arrays.html",
    "Numpy中文网":"https://www.numpy.org.cn/reference/",
    "The Python Graph Gallery":"https://www.python-graph-gallery.com/",
    "MegEngine 1.6 文档":"https://megengine.org.cn/doc/stable/zh/user-guide/model-development/tensor/index.html",
    "Matplotlib 3.4.3":"https://matplotlib.org/stable/gallery/index.html",
    "Pandas":"https://pandas.pydata.org/docs/reference/io.html",
    "Pandas必会的方法汇总":"https://mp.weixin.qq.com/s?__biz=MzAwOTQ4MzY1Nw==&mid=2247507346&idx=2&sn=361d3b3aa97c8129c5bc465431c69202&chksm=9b5c7974ac2bf0625a3fea8362a4605a46e159f5c3e9a512a75047ab1915b812e1391b5d8c62&scene=132#wechat_redirect",
    "Seaborn 0.11.2":"http://seaborn.pydata.org/examples/index.html",
    "Seaborn 0.9 中文文档":"https://seaborn.apachecn.org/#/docs/1",
    "Pyecharts":"https://pyecharts.org/#/zh-cn/intro",
    "菜鸟工具":"https://c.runoob.com/",
    "在线Json格式转换":"https://www.bejson.com/",
    "在线进制转换":"https://tool.oschina.net/hexconvert",
}

n = 0
for k,v in dic.items():
    if n % 3 == 0:
        print(f'<a href = {v} target=_blank>{k}</a><br>')
    else:
        print(f'<a href = {v} target=_blank>{k}</a>&nbsp;&nbsp;&nbsp;')
    n += 1
如果觉得文章不错,可以分享给其他人哟~
原文地址:https://www.cnblogs.com/hany-postq473111315/p/15370963.html