吭哧吭哧埋头干
吭哧吭哧埋头干
全部文章
Python
Java(83)
JS(17)
Linux(35)
OJ(10)
PHP(31)
SQL数据库(13)
大数据云计算(2)
大数据分析(3)
安卓开发(7)
开发框架(4)
微信开发(3)
数据结构(4)
未归档(48)
机器学习(16)
神经网络(5)
算法设计(9)
网络爬虫(13)
论文笔记(31)
归档
标签
去牛客网
登录
/
注册
TopCoderのZeze
What You Want, Time Will Give You!
全部文章
/ Python
(共14篇)
【Python】python3.6中实现同一行动态输出
print同时需要设置flush=True来动态显示 print("\r[{0}] {1} <- {2}".format(username,time,jdTimeFomat),end='',flush=True)
2018-05-11
0
526
【Python】将python3.6软件的py文件打包成exe程序
下载pyinstaller pyinstaller 改变图标 pyinstaller -F --icon=my.ico xxx.py 采用命令行操作的办法 在cmd命令行中,输入代码: pip install pyinstaller ...
2018-05-11
0
465
【Python】print array时array中间是省略号没有输出全部的解决方法
在开头加入: import numpy as np np.set_printoptions(threshold=np.inf) 大量元素情况 可以采用set_printoptions(threshold='nan') set_printoptions(thre...
2018-01-26
0
716
【Python】启动迅雷下载
import subprocess import base64 thunder_path = 'E:\Thunder\Program\Thunder.exe' def Url2Thunder(url): url = 'AA' + url + 'ZZ' url = base...
2017-12-17
0
557
【Python】微博自动抢红包
# -*- coding: utf-8 -*- import requests import js2xml from lxml import etree headers = { # 这边cookie替换成你的cookie 'Cookie':'9b', 'User-Agent': 'Moz...
2017-06-11
0
560
sublime text3
Package Control import urllib.request,os,hashlib; h = 'df21e130d211cfc94d9b0905775a7c0f' + '1e3d39e33b79698005270310898eea76'; pf = 'Package Cont...
2017-06-06
0
656
【X-Forwarded-For】WEB修改访客IP
X-Forwarded-For(XFF)是用来识别通过HTTP代理或负载均衡方式连接到Web服务器的客户端最原始的IP地址的HTTP请求头字段。 Squid 缓存代理服务器的开发人员最早引入了这一HTTP头字段,并由IETF在Forwarded-For HTTP头字段标准化草案中正式提出。这一HTT...
2017-05-30
0
1002
【Ubuntu】ubuntu系统下python3和python2环境自由切换
shell里执行:sudo update-alternatives --install /usr/bin/python python /usr/local/lib/python2.7 100sudo update-alternatives --install /usr/bin/python pyth...
2017-05-26
0
709
【Python】打印object对象
print (object .__dict__) print (dir(object))
2017-05-26
0
513
【Python】京东商品价格监控
import requests,json,re,winsound,time class Stock(object): def __init__(self): self.province_dict={value:key for key,value in { ...
2017-05-25
0
1409
首页
上一页
1
2
下一页
末页