格式输入
我是这样想的,假如有一个列表,现在想把它按照某种格式输出,比如像这样ab
c
d
f 排列输出,我该如何用format()呢?
本帖最后由 suchocolate 于 2021-1-12 22:55 编辑
是用join吧?ls1 = ['a','b','c','d','e','f']
print('\n'.join(ls1))
用format看起来不高效:
ls1 = ['a', 'b', 'c', 'd', 'e', 'f']
print(('{}\n' * 5).format(*ls1))
本帖最后由 qq1151985918 于 2021-1-12 22:37 编辑
{:10_258:}... suchocolate 发表于 2021-1-12 22:33
是用join吧?
用format看起来不高效:
嗯,谢谢。我还想问哈,如果是来个右对齐,如何弄呢。我这样改,发现输出结果没变化
a=
b=
print( '{:>10}'.format(('\n'.join(b))))
本帖最后由 洋洋痒 于 2021-1-12 23:02 编辑
https://fishc.com.cn/forum.php?mod=viewthread&tid=185807&extra=page%3D1%26filter%3Dtypeid%26typeid%3D768
把小甲鱼这个文章仔细研究一遍然后每天花二十分钟复习一下一个礼拜就熟练了 a=
for i in a:
print('{:>10d}'.format(i))
a=['a','b','c','d']
for i in a:
print('{:^10s}'.format(i))
卅向东 发表于 2021-1-12 22:54
嗯,谢谢。我还想问哈,如果是来个右对齐,如何弄呢。我这样改,发现输出结果没变化
a=
...
jion之后就变成了一个字符串,所以没什么效果,还是得分开的方式导入。
ls1 = ['a', 'b', 'c', 'd', 'e', 'f']
print(('{:>10}\n' * 5).format(*ls1)) 洋洋痒 发表于 2021-1-12 22:58
https://fishc.com.cn/forum.php?mod=viewthread&tid=185807&extra=page%3D1%26filter%3Dtypeid%26typeid%3 ...
嗯嗯,好的 suchocolate 发表于 2021-1-12 23:02
jion之后就变成了一个字符串,所以没什么效果,还是得分开的方式导入。
嗯,明白了
页:
[1]