1 Star 3 Fork 0

小明/Python处理美国大选数据

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
得到所有的城市分类.py 828 Bytes
一键复制 编辑 原始数据 按行查看 历史
小明 提交于 2018-10-08 15:44 . 第一次提交
import pymysql
#获得数据库的链接
def getdb():
conn_db = pymysql.connect(host="127.0.0.1", port=3306, user="root", passwd="4399", db="py_us_pre_ele", charset="utf8")
return conn_db
#得到数据库中的所有的城市
def get_all_city(db):
set={""}#创建一个set集合,用来放置所有的城市
str_sql="select state from tab"#查找到所有的城市语句
cur=db.cursor()#得到cursor对象
cur.execute(str_sql)#执行sql语句
rows=cur.fetchall()#得到结果集
for row in rows:#将城市加入到不重复的set集合中
set.add(row)
set.remove("")
with open("all_cities.txt", "w") as f:
for ele in set:
f.write(str(ele)+"\n")
def main():
get_all_city(getdb())
if __name__ == '__main__':
main()
print("程序完成")
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/Sam_chengjiaming/python_Processing_election_data.git
git@gitee.com:Sam_chengjiaming/python_Processing_election_data.git
Sam_chengjiaming
python_Processing_election_data
Python处理美国大选数据
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385