上一页 1 ··· 52 53 54 55 56 57 58 59 60 ··· 72 下一页

2018年11月8日

基础

摘要: 1 #显示当前运行的端口 netstat -ano 阅读全文

posted @ 2018-11-08 17:35 cltt 阅读(144) 评论(0) 推荐(0) 编辑

2018年11月4日

poj 2021

摘要: Relative Relatives Time Limit: 1000MS Memory Limit: 30000K Total Submissions: 3886 Accepted: 1723 Description Today is Ted's 100th birthday. A few wee 阅读全文

posted @ 2018-11-04 22:09 cltt 阅读(189) 评论(0) 推荐(0) 编辑

2018年11月3日

树状数组的修改+查询

摘要: Color the ball Time Limit: 9000/3000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 29305 Accepted Submission(s): 1426 阅读全文

posted @ 2018-11-03 22:38 cltt 阅读(273) 评论(0) 推荐(0) 编辑

poj 1182

摘要: 食物链 Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 94453 Accepted: 28515 Description 动物王国中有三类动物A,B,C,这三类动物的食物链构成了有趣的环形。A吃B, B吃C,C吃A。 现有N个动 阅读全文

posted @ 2018-11-03 20:38 cltt 阅读(152) 评论(0) 推荐(0) 编辑

2018年11月1日

requests 模块

摘要: #http://www.cnblogs.com/wupeiqi/articles/6283017.html #参考博客 #如何查看API文档 #选中对应的函数后Ctrl+B 1 ''' 2 标志 :From Data 3 请求体 : name = alex&age=18 4 data = { 5 'name':'alex', 6 'age':'1... 阅读全文

posted @ 2018-11-01 22:09 cltt 阅读(114) 评论(0) 推荐(0) 编辑

2018年10月28日

爬虫基础

摘要: 1 import requests 2 #无论是post、get请求 3 #要注意防爬虫策略:一般是加个请求头 4 #登陆 5 6 #下面的过程无法完成点赞 7 import requests 8 #无论是post、get请求 9 #要注意防爬虫策略:一般是加个请求头 10 #登陆 11 response_login = requests.post( 12 ur... 阅读全文

posted @ 2018-10-28 17:33 cltt 阅读(242) 评论(0) 推荐(0) 编辑

2018年10月27日

字符串

摘要: s = ['所','个','人','的']for i in range(4): print(s[i]) def f(s): cnt = 0 #注意tab for c in s: if c in 'edf': cnt+=1 return cntprint(f("defifff")) 6 阅读全文

posted @ 2018-10-27 10:11 cltt 阅读(169) 评论(0) 推荐(0) 编辑

2018年10月25日

提高级

摘要: #二分开方 x = 2 low = 0.0 high = x guess = (low+high)/2 while abs(guess**2-x) >1e-4: if guess**2 >x: high = guess else: low = guess guess = (low +high) /2 print (guess) 1.41... 阅读全文

posted @ 2018-10-25 22:19 cltt 阅读(123) 评论(0) 推荐(0) 编辑

循环语句

摘要: //缩进==放入循环体内部,因此语句的缩进很重要 1 while ans < 5: 2 print("sger") 3 cnt+=1#循环体内部。5次 4 ans +=2#循环体内部,因为缩进了(易错)。3次 5 6 7 8 9 10 11 #只会打印一个0 12 while cnt <5: 13 阅读全文

posted @ 2018-10-25 18:29 cltt 阅读(166) 评论(0) 推荐(0) 编辑

turtle

摘要: 1 import turtle 2 turtle.shape("turtle") 3 turtle.color("red") 4 #默认向右 5 turtle.left(90) 6 turtle.forward(200) 7 #离开屏幕 8 turtle.up() 9 turtle.right(90 阅读全文

posted @ 2018-10-25 16:41 cltt 阅读(615) 评论(0) 推荐(0) 编辑

上一页 1 ··· 52 53 54 55 56 57 58 59 60 ··· 72 下一页

导航