- 论坛徽章:
- 0
|
回复 #16 fy_ay 的帖子
楼上是Linux系统?utf-8终端汉字和数字混排的时候是对不齐的。
要自己动手把字符串全部变成unicode,再计算其长度。
下面的代码可以在linux终端下运行,能对齐。
- #! /usr/bin/python
- # -*- coding: utf-8 -*-
- import urllib,re,unicodedata,string,sys
- from time import strftime,localtime
- channel={"1":"CCTV-1","2":"CCTV-2","3":"CCTV-3","4":"CCTV-4亚洲",
- "5":"CCTV-4欧洲","6":"CCTV-4美洲","7":"CCTV-5","8":"CCTV-6",
- "9":"CCTV-7","10":"CCTV-8","11":"CCTV-9","12":"CCTV-10",
- "13":"CCTV-11","14":"CCTV-12","15":"CCTV新闻","16":"CCTV少儿",
- "17":"CCTV音乐","18":"CCTV_E","19":"CCTV-F","20":"CCTV-高清"}
- def string_width(text):
- """
- text必须是unicode
- """
- s = 0
- for ch in text:
- if isinstance(ch, unicode):
- if unicodedata.east_asian_width(ch) in ('F', 'W', 'A'):
- s += 2
- else:
- s += 1
- else:
- s += 1
- return s
- if __name__=="__main__":
- #print len(sys.argv)
- if len(sys.argv)==1:
- Select="8"
- else:
- if string.atoi(sys.argv[1])>20 or string.atoi(sys.argv[1])<=0:
- print "Out of Range, 没有这个台, 请选择1-20."
- sys.exit(0)
- else:
- Select=sys.argv[1]
- print '正在获取节目单,请稍后...'
- date=strftime('%Y%m%d',localtime())
- response = urllib.urlopen("http://tv.cctv.com/soushi/28/0"+Select+"/"+date+".shtml")
- Result=response.read().decode("gbk").encode("utf-8")
- list=re.findall(r"上午节目(.+?)<script",Result,re.S)
- list2=re.findall(r"<li>(.+?)</li>",list[0],re.S)
- morning=[]
- afternoon=[]
- listnum=0
- for i in range(len(list2)):
- #print time2[i],re.sub('<.+?>','',list2[i])[5:]
- i=re.sub('<.+?>','',list2[i])
- if string.atoi(i[:2])>=12: #将上午的节目于下午的节目分开
- afternoon.append(i)
- else:
- morning.append(i)
- if len(morning)>len(afternoon):
- listnum=len(morning)
- else:
- listnum=len(afternoon)
- #print "+"+"-"*37+"+"+"-"*37+"+"
- print "-"*80
- print " "*13+"上午节目"+" "*26+"下午节目"
- print " "*14+"========"+" "*26+"========"
- #print "+"+"-"*37+"+"+"-"*37+"+"
- for i in range(listnum):
- if(i<len(morning)):
- print "%-4s %-s%-s" %(morning[i][:5],morning[i][5:]," "*(35-string_width(unicode(morning[i],'utf-8')))),
- else:
- print " "*36,
- if(i<len(afternoon)):
- print "%-4s %-s %-s" %(afternoon[i][:5],afternoon[i][5:]," "*(35-string_width(afternoon[i])))
- else:
- print " "*37
- print "-"*80,
- print " "*24,strftime("%Y年%m月%d日"),
- print "%s 节目单" %channel[Select]
复制代码
[ 本帖最后由 two 于 2009-8-26 09:18 编辑 ] |
|