zoukankan      html  css  js  c++  java
  • python 第三章 字符串-例1

    1.字段宽度和精度

    >>>'%.*s' % (10,'Gruido')

    '     Guido'

    >>>'%.-*s' % (10,'Gruido')

    'Guido     '

    详见例子

    width = input('Please enter ')
    price_width=10
    item_width=width-price_width

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

    print '=' * width

    print header_format %(item_width,'Item',price_width,'Price')

    print'-'*width

    print format %(item_width,'Apples',price_width,0.4)
    print format %(item_width,'Pears',price_width,0.5)
    print format %(item_width,'Cantaloupes',price_width,1.92)
    print format %(item_width,'Dried Apricots(16 oz.)',price_width,8)
    print format %(item_width,'Prunes(4 1bs.)',price_width,12)

    输出结果:

    Please enter width:35

    ===================================

    Item                       Price

    -------------------------------------------------------

    Apples                      0.4

    ...                         ...

    ...                         ...

    ...                         ...

    ...                         ...

    ...                         ...

    ===================================

  • 相关阅读:
    AC自己主动机
    curl命令具体解释
    javascript事件和事件处理
    STM32 水晶不摇
    Play Modules Morphia 1.2.9a 之 Aggregation and Group aggregation
    菜板 动态规划
    姿势体系结构的详细解释 -- C
    有情无情胜, 大家是不是谁谁谁的意外
    S性能 Sigmoid Function or Logistic Function
    iOS 中国排序
  • 原文地址:https://www.cnblogs.com/yhcreak/p/5327931.html
Copyright © 2011-2022 走看看