Python Write Log

Source: Internet
Author: User

The method of writing a log is various, I this is I like the method, can make a reference

There's nothing to say, just the code.

Import TimedefWrite_log (value): Now_time= Time.time ()#get the current date and timeTime_format ='%y-%m-%d%h:%m:%s' #Specify the date and time formatTime_put = Time.strftime (time_format,now_time)#format time, time becomes YYYY-MM-DD HH:MI:SSfile_name ='/log/log.log'Log_file= Open (file_name,'a')#in Append mode, if the file does not exist, it will be created automatically.Write_value ='%s%s'%(now_time, value) log_file.write (write_value) log_file.close ()if __name__=='__main__': Value='insert something into Log_file'Write_log (value)

Python Write Log

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.