首页  >  文章  >  后端开发  >  python读入文件和time/sys模块的简单使用

python读入文件和time/sys模块的简单使用

巴扎黑
巴扎黑原创
2016-12-09 14:30:571870浏览

python读入文件和time/sys模块的简单使用 

一些标准库函数的用法也待学习,如:os/re/sets/string/queue/socket 

Python代码  

#!/usr/bin/python  
  
print ord('a')  
print chr(97)  
#字符和整型互相转换  
  
fp = open("file.tmp")  
for line in fp.readlines():  
  print line,  
#文件操作readlines()函数一次读入多行,循环输出  
for line in fp:  
  print line,



Python代码  

#!/usr/bin/python  
import time  
#time模块使用  
  
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代码  

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


声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
上一篇:python修改文件下一篇:python模块