作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我尝试使用 .format() 方法在 Python 中格式化列表。我希望我的输出如下
One
Two
Three
Four
但是,当我运行以下代码时
if __name__ == '__main__':
output_str = ''
my_list = ['One', 'Two', 'Three', 'Four']
for element in my_list:
output_str = '{}{}\n\t'.format(output_str, element)
print (output_str)
打印
One
Two
Three
Four
有没有一种方法可以在Python中创建新行,同时保留之前使用.format()创建的所有选项卡?感谢您的回答:)
最佳答案
是的,.format()
可用于通过将制表符指定为填充字符来进行缩进,如下所示:
my_list = ['One', 'Two', 'Three', 'Four']
for indent_level, element in enumerate(my_list):
print("{:\t<{i}}{}".format('', element, i=indent_level))
这将显示:
One
Two
Three
Four
关于python - 如何在 python 中添加新行时保持制表符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47141841/
我是一名优秀的程序员,十分优秀!