In practice, we encounter a time processing problem. We need to compare Sep 06, 2014 19:30 (UTC time) with the current time. We need to know the operation of this 2014-09-06 19:30 format time. Therefore, when processing, I wanted to
convert the sep format time into the time in the next format. I couldn't find the relevant function, so I simply wrote a program, just remember Here, in preparation for query
the code is as follows:
# -*- coding: utf-8 -*- from datetime import date from datetime import datetime from datetime import timedelta # # #如果是返回当前时间,可以简单的写成 # # time.localtime() # # #这个返回UTC时间 # # time.gmtime() # lt = time.localtime() # tm = time.gmtime() # ft = time.strftime('%Y-%m-%d %H-%M',lt) # ft2 = time.strftime('%Y-%m-%d %H:%M',tm) # print ft, ft2 # print '--------------------------------------------------------' # now = datetime.datetime.now() # now = now.replace(day = 1) # print now # print now.time() # # mytime = ['2014-09-06 20:19'] # #mytime2 = '2014-10-09 14:32' # str = "".join(mytime) # print str # retime = datetime.strptime(str,'%Y-%m-%d %H:%M') # print retime # retime = retime +timedelta(hours = 8) # print retime # # tdtime = datetime.now() # print tdtime # if retime <= tdtime - timedelta(days = 7): # print "too early" # # #Sep 06, 2014 19:30 monthdic = {'Jan':'01', 'Feb':'02', 'Mar':'03', 'Apr':'04', 'May':'05', 'Jun':'06', 'Jul':'07', 'Aug':'08', 'Sep':'09', 'Oct':'10', 'Nov':'11', 'Dec':'12'} def time_format(timestr): timestr = timestr.replace(',','') #print timestr timelist = timestr.split() #print timelist mon = "".join(timelist[0]) #print mon timelist[0] = monthdic[mon] #print timelist mytime = "".join(timelist[2])+'-'+"".join(timelist[0])+'-'+"".join(timelist[1])+' '+ "".join(timelist[3]) return mytime if name == 'main': timestr = 'Sep 06, 2014 19:30' str = time_format(timestr) print str mytime = datetime.strptime(str,'%Y-%m-%d %H:%M') print mytime mytime = mytime +timedelta(hours = 8) print mytime tdtime = datetime.now() print tdtime if mytime <= tdtime - timedelta(days = 7): print "too early"
The above is the detailed content of Using python time processing methods. For more information, please follow other related articles on the PHP Chinese website!

The reasons why Python scripts cannot run on Unix systems include: 1) Insufficient permissions, using chmod xyour_script.py to grant execution permissions; 2) Shebang line is incorrect or missing, you should use #!/usr/bin/envpython; 3) The environment variables are not set properly, and you can print os.environ debugging; 4) Using the wrong Python version, you can specify the version on the Shebang line or the command line; 5) Dependency problems, using virtual environment to isolate dependencies; 6) Syntax errors, using python-mpy_compileyour_script.py to detect.

Using Python arrays is more suitable for processing large amounts of numerical data than lists. 1) Arrays save more memory, 2) Arrays are faster to operate by numerical values, 3) Arrays force type consistency, 4) Arrays are compatible with C arrays, but are not as flexible and convenient as lists.

Listsare Better ForeflexibilityandMixdatatatypes, Whilearraysares Superior Sumerical Computation Sand Larged Datasets.1) Unselable List Xibility, MixedDatatypes, andfrequent elementchanges.2) Usarray's sensory -sensical operations, Largedatasets, AndwhenMemoryEfficiency

NumPymanagesmemoryforlargearraysefficientlyusingviews,copies,andmemory-mappedfiles.1)Viewsallowslicingwithoutcopying,directlymodifyingtheoriginalarray.2)Copiescanbecreatedwiththecopy()methodforpreservingdata.3)Memory-mappedfileshandlemassivedatasetsb

ListsinPythondonotrequireimportingamodule,whilearraysfromthearraymoduledoneedanimport.1)Listsarebuilt-in,versatile,andcanholdmixeddatatypes.2)Arraysaremorememory-efficientfornumericdatabutlessflexible,requiringallelementstobeofthesametype.

Pythonlistscanstoreanydatatype,arraymodulearraysstoreonetype,andNumPyarraysarefornumericalcomputations.1)Listsareversatilebutlessmemory-efficient.2)Arraymodulearraysarememory-efficientforhomogeneousdata.3)NumPyarraysareoptimizedforperformanceinscient

WhenyouattempttostoreavalueofthewrongdatatypeinaPythonarray,you'llencounteraTypeError.Thisisduetothearraymodule'sstricttypeenforcement,whichrequiresallelementstobeofthesametypeasspecifiedbythetypecode.Forperformancereasons,arraysaremoreefficientthanl

Pythonlistsarepartofthestandardlibrary,whilearraysarenot.Listsarebuilt-in,versatile,andusedforstoringcollections,whereasarraysareprovidedbythearraymoduleandlesscommonlyusedduetolimitedfunctionality.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Notepad++7.3.1
Easy-to-use and free code editor

Atom editor mac version download
The most popular open source editor
