Python基本语法实例:文件处理,字符串转换

查看链接:
http://www.cnblogs.com/dreamer-fish/p/3818443.html
os.renames(file,file+'.wav')
file_obj = open('stock.csv','r')
lines = file_obj.readlines( )
for line in lines:
    info = line.split(',')
output = open('stock_new.csv','w')
output.write('something')
#整数和字符串之间的转换
#主要是要调用os.renames函数。
#读写文件:


整数转字符串:
strString = "00012543"
num = int(strString ,10) #decimal base
字符串转整数:
直接str()即可。
strString = "00012543"
num = len(strString) 

strString.isdigit() #is a digit or not

import time a = time.strftime('%Y%m%d',time.localtime(time.time())) b = time.strptime('20141114','%Y%m%d') a为时间转字符串。 b为字符串转时间。获得一个time_struct的对象
 
  
 
  
 
  
 
  
 
  
 
  
 
 

你可能感兴趣的:(Python)