假面的假面 发表于 2021-6-10 00:48:12

fromat格式化函数疑问

import openpyxl

book = openpyxl.load_workbook('items.xlsx')

sheet = book.active

cells = sheet['A1': 'B6']

for c1, c2 in cells:
    print("{0:8} {1:8}".format(c1.value, c2.value))


请问print后的"{0:8} {1:8}"代表什么意思?没太明白

dragon_xiao 发表于 2021-6-10 04:53:48

c1.value 后面指定 ‘’位宽‘’值是8    c2.value 值后面指定位宽,位宽值 是8

print("{0:8} {1:8}".format('你好','中国'))
你好       中国      

Twilight6 发表于 2021-6-10 07:59:30



{0:8} 是指 format 后面 第 0 位的索引值变量,即 c1.value , 以8个字符宽度格式化到这个位置

{1:8} 是指 format 后面 第 1 位的索引值变量,即 c2.value , 以8个字符宽度格式化到这个位置

更多详情可以看看这篇文章:

实用干货:字符串格式化
https://fishc.com.cn/thread-145610-1-1.html

页: [1]
查看完整版本: fromat格式化函数疑问