#Python

python 时间和时间戳的转化

时间戳与时间之间的转换,需要一个中间过程,即将先将时间或时间戳先转为时间元组!1、时间转时间戳:importdatetime,times=datetime.datetime(2016,6,22)time.mktime(s.timetuple())#1466524800.02、时间戳转时间:timeTuple=time....
代码星球 ·2020-04-08

python中time类型,datetime类型的关系与互相转换

一.time模块time模块提供各种操作时间的函数    一般有两种表示时间的方式:      第一种是时间戳的方式(相对于1970.1.100:00:00以秒计算的偏移量),时间戳是惟一的 Python代码&...

python date,datetime 和time的区别

这是三个不同类型的数据,例如2015-11-2110:51:20:date是日期,表示的是2015-11-21;datetime是日期时间,表示的是2015-11-2110:51:20;time是时间,表示的是10:51:20。...

Python中返回SQL字段名

defReturnInfo(self,avalue,akey):cursor=connection.cursor()iftype(avalue)==int:Sql="select*from%swhere%s=%s"%(self.table,akey,avalue)else:Sql="select*from%swhere...
代码星球 ·2020-04-08

Python取出SQL表单中的字段名

defReturnInfo(self,avalue,akey):cursor=connection.cursor()Sql="select*from%swhere%s=%s"%(self.table,akey,avalue)cursor.execute(Sql)SqlDomain=cursor.description#...

Python 协程

defGenerateProcess():filelocal=r'c:Te'foriinrange(10):baiWei=i*100filename=[None]*100filelocalation=[None]*100forjinrange(100):filename_pre=baiWei+j+1filename[j...
代码星球 ·2020-04-08

Python 用多线程上传和下载文件

1#-*-coding:utf-8-*-2__author__='louis'34fromftplibimportFTP5importmultiprocessing6importtime789defftpconnect():10ftp=FTP()11timeout=3012port=2213ftp.connect('l...

Python 变量交换

1#coding=utf-823a,b=1,24print'beforechange'5printa,b67a,b=b,a8print'afterchange'9printa,b1011#>>>12#beforechange13#1214#afterchange15#21理解第7行a,b=b,a是关键...
代码星球 ·2020-04-08

Python 将文件重新命名

1#-*-coding:utf-8-*-2__author__='louis'34importos5importre678defrename_files(dir_path):9i=110printdir_path11forfilindir_list:12ifos.path.isfile(os.path.join(dir...
代码星球 ·2020-04-08

Python ftplib模块

Helponmoduleftplib:NAMEftplib-AnFTPclientclassandsomehelperfunctions. 名字:ftplib模块-一个FTP客户端类和一些辅助的方法  FILEc:python27libftplib.pyDESCRIPTIONBasedon...
代码星球 ·2020-04-08

Python 函数作为返回值

函数作为返回值高阶函数除了可以接收函数作为参数外,还可以把函数作为结果值返回。deflazy_sum(*args):defsum():ax=0forninargs:  ax=ax+nreturnaxreturnsumf=lazy_sum(1,2,3,4,5)printf#<functionsumat0x02657...
代码星球 ·2020-04-08

Python map/reduce/filter/sorted函数以及匿名函数

 1.map()函数的功能:map(f,[x1,x2,x3])=[f(x1),f(x2),f(x3)]deff(x):returnx*xa=map(f,[1,2,3,4,5])b=map(f,(6,7,8,9))printaprintb#[1,4,9,16,25]#[36,49,64,81]#a=map(f,...

Python 高阶函数

1.变量可以指向函数名deff(a):  returnabs(a)h=f(-10)#这样是调用函数f且把结果传给变量hprinthh=f#这是让变量h指向函数f.printh(-10) 2.函数名也是变量deff(a):  returnabs(a)f=1f(-10)#Traceback(mostrecentc...
代码星球 ·2020-04-08

Python 列表生成器

 1.列表里生成器相比range()生成的列表生成一个列表[1,2,3,4,5,6,7,8,9,10]可用range(1,11)L=range(1,11)#printL#[1,2,3,4,5,6,7,8,9,10]如果要生成一个[1x1,2x2,3x3,...,10x10]怎么做?用for循环L=[]forx...
代码星球 ·2020-04-08

Python 生成器generator

列表的问题列表生成器可以直接创建一个表,但是,如果一个表中有100万个元素,那么这个表太占空间,而且往往我们仅仅需要访问前面几个元素,后面绝大多数元素占用的空间都白白浪费了。生成器如果列表元素可以按照某种算法推算出来,那我们可以在循环的过程中不断的推算出后续的元素。而不用一开始就创建整个list.这样,节省了大量的空间...
代码星球 ·2020-04-08
首页上一页...308309310311312...下一页尾页