摘要: python爬虫入门 开发环境 ubuntu 16.04 sublime pycharm requests库 requests库安装: sudo pip install requests 第一个例子 import requests r=requests.get("http://www.baidu.c 阅读全文
posted @ 2018-01-11 23:47 philhuan 阅读(742) 评论(0) 推荐(1) 编辑
摘要: c语言贪吃蛇详解5.GameOver功能与显示成绩 以前我们已经做出来了一个能吃东西变长的蛇。不过它好像不会死。。。 现在就来实现一下game over的功能吧。 写个函数判断蛇是否撞到自己或者撞到墙: bool gameOver() { bool isGameOver=false; int sX= 阅读全文
posted @ 2018-01-11 20:02 philhuan 阅读(4250) 评论(1) 推荐(2) 编辑