Python gets the current system time

Source: Internet
Author: User
Tags month name

Python Gets the current time

I sometimes write programs to use the current time, I would like to use Python to fetch the current time, although not difficult, but always forget, with one throw once,
In order to be able to remember better, I deliberately wrote todaycurrent time in PythonThis article, if you feel useful to you, can be collected.

To get time-related information, use the Python times module, which has a lot of features that are very useful to you, and you can go to the official
The document understands that the current time to fetch is the time stamp of the current time, and the timestamp appears to be the time between 1970 and the present time.

You can try the following method to get the timestamp of the current time:
Import time
Print Time.time ()
The result of the output is:
1279578704.6725271

But this is a series of numbers that are not the result we want, and we can use the time module's format to process it:
Time.localtime (Time.time ())
Using the Time.localtime () method, the function is to format the timestamp as local time.
The result of the output is:
Time.struct_time (tm_year=2010, tm_mon=7, tm_mday=19, tm_hour=22, tm_min=33, tm_sec=39, tm_wday=0, tm_yday=200, tm_ isdst=0)

Now it looks more hopeful that the format will be the time we want.
Time.strftime ('%y-%m-%d ', Time.localtime (Time.time ()))

Finally, using the Time.strftime () method to format just a bunch of information into what we want, now the result is:
2010-07-19

There are a lot of parameters in the Time.strftime that will allow you to freely output what you want:
The following are the parameters of Time.strftime:
Strftime (format[, tuple]), string
Outputs the specified Struct_time (default current time), based on the specified formatted string
Python format symbols in time Date:
%y Two-digit year representation (00-99)
%Y Four-digit year representation (000-9999)
%m Month (01-12)
One day in%d months (0-31)
%H 24-hour hours (0-23)
%I 12-hour hours (01-12)
%M minutes (00=59)
%s seconds (00-59)

%a Local Simplified Week name
%A Local Full week name
%b a locally simplified month name
%B Local Full month name
%c Local corresponding date representation and time representation
%j Day of the Year (001-366)
%p the equivalent of a local a.m. or p.m.
%u weeks of the year (00-53) Sunday is the beginning of the week
%w Week (0-6), Sunday for the beginning of the week
%W Week of the Year (00-53) Monday is the beginning of the week
%x Local corresponding date representation
%x Local corresponding time representation
%Z the name of the current time zone
Percent% of the number itself

If you are interested, you can try it yourself.

Another topic: http://bbs.cnpythoner.com/viewthread.php?tid=127&extra=, interested can do

Original article please note reproduced from Lao Wang Python, this article address: http://www.cnpythoner.com/post/89.html

Author: Lao Wang @python python tutorial
Lao Wang Python, providing pythn related django tutorials and Python downloads, I hope you can enjoy!

Python gets the current system time

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.