import urllib2
f=urllib2.urlopen(raw_input("Please enter the URL:"))
ff=open(raw_input("Please enter the filename:"),"w+")
for x in range(1,1000):
s=f.read()
ff.write(s)
ff.close()
阅读全部
|
cstdio
贴于 2019年4月4日 17:59
hide
bbsi
import urllib2
f=urllib2.urlopen(raw_input("Please enter the URL:"))
s=f.read()
ff=open(raw_input("Please enter the filename:"),"w+")
ff.write(s)
ff.close()
阅读全部
|
cstdio
贴于 2019年2月28日 17:53
hide
bbsi
#coding=utf-8
from __future__ import print_function
#利用泰勒公式计算星期几
#w=y+[y/4]+[c/4]-2c+[26(m+1)/10]+d-1
def getweek(year,month,day):
#w #星期
#c #世纪-1 YYYY的头两位
#y #年份 YYYY的后两位
#m #月份 >=3 1月 2月看成上年的13月 14月
#d=day #日
if month>=3:
......................
阅读全部
|
wp231957
贴于 2019年2月27日 15:05
hide
bbsi
from __future__ import print_function
import socket
import sys
import os
filename=sys.argv[1]
txt=open(filename,"rb+")
filesize=os.path.getsize(filename)
i=1
while i<=filesize:
data=txt.read(1)
print ("%4s"%str(hex(ord(data)))+' ',end='')
......................
阅读全部
|
wp231957
贴于 2019年2月26日 14:00
hide
bbsi
import urllib2
f=urllib2.open(raw_input("Please enter the URL:"))
s=f.read()
ff=open(raw_input("Please enter the filename:"),"w+")
ff.write(s)
ff.close()
阅读全部
|
cstdio
贴于 2019年2月14日 11:56
hide
bbsi
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
import os
import sys
import time
def get_remote_status():
l = os.popen('ssh root@remote.com "cd /var/www/mysite; git st"').readlines()
s = ''.join(l)
return s
......................
阅读全部
|
静夜思
贴于 2018年9月11日 10:29
hide
bbsi
# -*- coding: UTF-8 -*-
__author__ = 'sail'
a=20
i=0
while i<5:
c=input("输入1-50其中一个数:")
c=int(c)
if a>c:
print"输入数据过小"
elif a<c:
......................
阅读全部
|
sailstar
贴于 2017年11月18日 21:49
hide
bbsi
#一个简单猜数字游戏
# -*- coding: UTF-8 -*-
__author__ = 'sail'
a=20
i=0
while i<5:
c=input("输入1-50其中一个数:")
c=int(c)#這个地方应该抛出异常
if a>c:
......................
阅读全部
|
sailstar
贴于 2017年11月18日 21:43
hide
bbsi
import cv2
img=cv2.imread("1.jpeg")
tag=cv2.imread("11.jpg")
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
tg = cv2.cvtColor(tag, cv2.COLOR_BGR2GRAY)
h=img.shape[0]
w=img.shape[1]
height=tg.shape[0]
width=tg.shape[1]
def matcher(a,b):
for x in range(0,height):
......................
阅读全部
|
qiqi不留白
贴于 2016年7月12日 21:18
hide
bbsi