V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
yundanfengqing
V2EX  ›  Python

新手求助 中文字符串对齐问题

  •  
  •   yundanfengqing ·
    yundanfengqing · 2013-10-10 15:37:11 +08:00 · 5734 次点击
    这是一个创建于 3841 天前的主题,其中的信息可能已经有所发展或是发生改变。
    代码如下
    #-*-coding:gbk-*-
    width = input('请输入宽度:')

    price_width = 10
    item_width = width - price_width

    header_format = '%-*s%*s'
    format = '%-*s%*.2f'

    print '=' * width

    print header_format %(item_width,'项目',price_width,'价格')

    print '-' * width

    print format %(item_width,'苹果',price_width,0.40)
    print format %(item_width,'鸭梨',price_width,0.50)
    print format %(item_width,'哈密瓜',price_width,1.92)
    print format %(item_width,'干杏仁',price_width,8)
    print format %(item_width,'西梅干干干',price_width,12)

    print '=' * width

    显示如下

    为什么后面对不齐呢
    3 条回复    1970-01-01 08:00:00 +08:00
    spoony
        1
    spoony  
       2013-10-10 15:48:07 +08:00
    西梅干干干
    貌似干的越多越对不齐
    vibbow
        2
    vibbow  
       2013-10-10 17:29:10 +08:00
    用等宽字符啊亲
    phyng
        3
    phyng  
       2013-10-11 12:19:01 +08:00
    终于弄明白了orz,2楼正解
    简单解释就是:中文字符在字符占用上相当于两个英文字符,但是字体设计上,一般一个中文字符的宽度不会等于两个英文字符的宽度,所以打印出来的效果有偏差,但是等宽字符一个中文字体的宽度刚好等于两个英文字符宽度,所以正常:

    非等宽字体比如我用的Yahei Console字体就是这样:

    注意观察一个中文字符的宽度不等于两个英文字符。
    另外,format = '%-*s%*.2f',这种格式化是比较旧的Python版本了(http://docs.python.org/release/2.5.2/lib/typesseq-strings.html),2.7及以后渐渐抛弃这种语法。
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   3285 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 31ms · UTC 13:41 · PVG 21:41 · LAX 06:41 · JFK 09:41
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.