kearney

自学还没成才的python猿

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2017年7月3日

摘要: ImageDraw在图片上添加中文 阅读全文
posted @ 2017-07-03 13:31 Gino森 阅读(835) 评论(0) 推荐(0) 编辑

2017年6月27日

摘要: http://siroh.blog.sohu.com/274593310.html 阅读全文
posted @ 2017-06-27 16:45 Gino森 阅读(8102) 评论(0) 推荐(0) 编辑

摘要: http://www.lfd.uci.edu/~gohlke/pythonlibs/ ctrl+F搜索下载openpyxl,下载后安装即可 阅读全文
posted @ 2017-06-27 10:51 Gino森 阅读(32269) 评论(0) 推荐(1) 编辑

2017年6月20日

摘要: 老D google-hosts Python爬虫之一:十几行代码下载王者荣耀224个皮肤 python遍历文件夹下的文件 生成词云之python中WordCloud包的用法 pip --upgrade批量更新过期的python库 opencc安装问题及解决: Python - 安装opencc Im 阅读全文
posted @ 2017-06-20 18:41 Gino森 阅读(167) 评论(0) 推荐(0) 编辑

2017年6月13日

摘要: #剪刀、石头、布 import random guess_list = ["石头", "剪刀", "布"] win_combination = [["布", "石头"], ["石头", "剪刀"], ["剪刀", "布"]] while True: people = input('请输入:石头,剪刀,布\n').strip() computer = random.choic... 阅读全文
posted @ 2017-06-13 18:06 Gino森 阅读(686) 评论(0) 推荐(0) 编辑

摘要: 题目: a,b,c,d 4名为犯罪嫌疑人,有一名是小偷,其中3个人说的是实话,一个人说的是假话,编程推断谁是小偷。 a说我不是小偷 b说c是小偷 c说小偷肯定是d d说c胡说! 阅读全文
posted @ 2017-06-13 16:25 Gino森 阅读(812) 评论(0) 推荐(0) 编辑

摘要: # coding:utf-8 with open('dist_1.txt','r',encoding= 'utf-8') as f1,open('dist_2.txt','w',encoding= 'utf-8') as f2: i=0 for line in f1: i+=1 if i%10==0: ... 阅读全文
posted @ 2017-06-13 14:47 Gino森 阅读(237) 评论(0) 推荐(0) 编辑

2017年6月7日

摘要: python 解决eclipse Pydev中import时报错Unresolved import requests的方法 如何下载和安装pywin32(亲测有效) github汉化 跟着黄哥学python google 如何使用谷歌 阅读全文
posted @ 2017-06-07 17:29 Gino森 阅读(190) 评论(0) 推荐(0) 编辑

2017年5月27日

摘要: 参考资料: http://www.qingpingshan.com/jb/python/147336.html http://blog.csdn.net/lanchunhui/article/details/51207696 http://www.cnblogs.com/Lands-ljk/p/54 阅读全文
posted @ 2017-05-27 17:59 Gino森 阅读(1198) 评论(0) 推荐(0) 编辑

2017年5月19日

摘要: 开机发现所有word文档打开提示如下“文件或目录损坏且无法读取”。拷贝到其它机器可以正常打开。所以判定是office软件的问题。 解决:修复office word部分组件。 阅读全文
posted @ 2017-05-19 10:02 Gino森 阅读(581) 评论(0) 推荐(0) 编辑