摘要:
#!/bin/bash mkdir /etc/yum.repos.d/repo mv /etc/yum.repos.d/*.repo /etc/yum.repos.d/repo curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.ali 阅读全文
摘要:
使用sort 进行排序 # 默认 为从小到大 , reverse=False list = [[a,1],[a,2]] list.sort(key=lambda x:float(x[1]), reverse=True) print(list) [[a,2],[a,1]] 阅读全文
摘要:
pip3 安装 pip3 install presto-python-client 连接presto 代码 conn = prestodb.dbapi.connect(host='{host}',port=8889,user='{user}',catalog='hive',schema=schema 阅读全文