Simple use of python to read files and the time/sys module

Source: Internet
Author: User
Python reads files and timesys modules. the usage of some standard library functions is also to be learned, such as osresetsstringqueuesocket #! Usrbinpythonprintord (a) printchr (97) # Convert the characters and integers into fpopen (& amp; quot; file. tmp & amp; quot;) forlineinfp. readlines (... simple use of python to read files and the time/sys module

Usage of some standard library functions is also to be learned, such as: OS/re/sets/string/queue/socket

Python code

#! /Usr/bin/python print ord ('A') print chr (97) # Conversion between characters and integers fp = open ("file. tmp ") for line in fp. readlines (): print line, # The File operation readlines () function reads multiple rows at a time, and cyclically outputs for line in fp: print line,



Python code

#! /Usr/bin/python import time # time module uses print time. localtime (). tm_year # time. struct_time (tm_year/tm_mon/tm_mday/tm_hour/tm_min/tm_sec/# tm_wday/tm_yday/tm_isdst) print time. asctime () # time () localtime () gmtime () ctime () strftime () strptime () # clock () sleep ()



Python code

#!/usr/bin/python  import sys    print sys.platform  print sys.argv[0]  print sys.argv[1]

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.