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

    ...                         ...

    ...                         ...

    ...                         ...

    ...                         ...

    ...                         ...

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

  • 相关阅读:
    WebDriverException: Message: 'geckodriver' executable needs to be in PATH.
    Django安装与使用
    初识Django
    python学习之xlrd的使用
    python 学习笔记
    根据当前日期生成一个唯一标识的名称
    用Python生成组织机构代码,附源码
    IO流基础
    多线程
    日期时间类
  • 原文地址:https://www.cnblogs.com/yhcreak/p/5327931.html
Copyright © 2011-2022 走看看