2019年7月31日
摘要: 本地项目上传到github 1.在对应的网站建立仓库 2.进入本地的项目文件,右键选择Git bash here 3.执行git init命名初始化本地仓库 4.git remote add origin + 远程仓库地址(添加远程仓库) git remote remove origin (删除远程 阅读全文
posted @ 2019-07-31 15:00 你们都厉害 阅读(147) 评论(0) 推荐(0) 编辑
  2019年7月8日
摘要: import jsonimport requests# 翻译函数,word 需要翻译的内容def translate(word): # 有道词典 api url = 'http://fanyi.youdao.com/translate?smartresult=dict&smartresult=rul 阅读全文
posted @ 2019-07-08 09:42 你们都厉害 阅读(3070) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html><head> <title>中英文切换</title> <meta charset="UTF-8"/> <script type="text/javascript" src="jquery-3.3.1.min.js"></script> <script type="te 阅读全文
posted @ 2019-07-08 09:41 你们都厉害 阅读(387) 评论(0) 推荐(0) 编辑
摘要: ::-webkit-scrollbar { width: 10px;//y轴上的滚动条宽度 height: 10px;//x轴上滚动条高度}::-webkit-scrollbar-track { border-radius: 3px; /*滚动条的背景区域的圆角*/ /*滚动条的背景颜色*/}::- 阅读全文
posted @ 2019-07-08 09:39 你们都厉害 阅读(211) 评论(0) 推荐(0) 编辑
  2019年5月17日
摘要: 今天为大家整理了32个Python爬虫项目。整理的原因是,爬虫入门简单快速,也非常适合新入门的小伙伴培养信心。所有链接指向GitHub,祝大家玩的愉快 今天为大家整理了32个Python爬虫项目。整理的原因是,爬虫入门简单快速,也非常适合新入门的小伙伴培养信心。所有链接指向GitHub,祝大家玩的愉 阅读全文
posted @ 2019-05-17 09:07 你们都厉害 阅读(3333) 评论(0) 推荐(0) 编辑
  2019年3月14日
摘要: https://blog.csdn.net/wanght89/article/details/78188591?locationNum=4&fps=1 阅读全文
posted @ 2019-03-14 09:28 你们都厉害 阅读(2335) 评论(0) 推荐(0) 编辑
  2019年3月13日
摘要: 注意被拦截的邮件 阅读全文
posted @ 2019-03-13 20:09 你们都厉害 阅读(1210) 评论(0) 推荐(0) 编辑
  2019年3月7日
摘要: MySQL:众多关系型数据库中的一种仓库 --数据库箱子 --表数据库:进入mysql 命令行: mysql -uroot -p查看所有数据库: show databases;创建数据库: create database niu charset utf8;删除数据库: drop database n 阅读全文
posted @ 2019-03-07 16:24 你们都厉害 阅读(109) 评论(0) 推荐(0) 编辑
  2019年3月6日
摘要: 单表查询之下划线 跨表查询操作 class Author(models.Model): nid = models.AutoField(primary_key=True) name=models.CharField( max_length=32) age=models.IntegerField() # 阅读全文
posted @ 2019-03-06 21:16 你们都厉害 阅读(343) 评论(0) 推荐(0) 编辑
  2019年1月29日
摘要: https://www.cnblogs.com/fiona-zhong/p/9720270.html 阅读全文
posted @ 2019-01-29 12:16 你们都厉害 阅读(78) 评论(0) 推荐(0) 编辑