美文网首页
Python 格式化输出

Python 格式化输出

作者: Max_7 | 来源:发表于2018-10-24 16:57 被阅读0次
数字
#整数
print('He got %d marks'%88)
#设置宽度为3,不足0填充
print('He got %03d marks'%95)
#浮点数
print('He got %f marks'% 77.5)
#默认保留3位小数
print('He got %.3f marks'%66.666666)
#保留3位,科学计数法
print('He got %.3e marks'%66.666666)

输入结果如下

He got 88 marks
He got 095 marks
He got 77.500000 marks
He got 66.667 marks
He got 6.667e+01 marks
字符串
s ='This is a test line'
#正常输出
print(s)
#右对齐,占位符20位
print('%20s'%s)
#右对齐,占位符50位
print('%50s'%s)
#左对齐
print('%-s'%s)
#左对齐20位
print('%-20s'%s)
#在字符串中截取8位
print('%.8s'%s)
#右对齐,20位占位符,截取两位
print('%20.2s'%s)
#左对齐,20位占位符,截取两位
print('%-20.2s'%s)

输出结果如下

This is a test line
 This is a test line
                               This is a test line
This is a test line
This is a test line 
This is 
                  Th
Th                  

相关文章

  • 实战

    python的格式化输出 #python格式化输出 ##%对于未知变量类型,用这样就不太方便了 name='lis...

  • 入门输入输出篇

    python 的输入和输出 输出 print('hello') 格式化输出: 命令行: >>> 'Hello, %...

  • Python2与Python3中print用法总结

    Python2中的print用法 在Python2 中 print 是一种输出语句 1.格式化输出整数 2.格式化...

  • Python 中的常见 格式化符号

    Python 认识格式化输出 中的 格式化符号 在前面的文章里我们早早就接触过Python中的输出的函数prinn...

  • python—输入与输出

    Python的格式化输出 使用字符串格式化的形式来优化Python的输出,使用%作为占位符。%后面跟的是变量的类型...

  • Python使用format与f-string数字格式化

    Python使用format与f-string数字格式化 输出:

  • python笔记

    Python format格式化输出 浅谈 Python 的 with 语句 Python中迭代原理生成器和迭代原...

  • python-print函数的使用

    1.格式化输出 看看《Python基础编程》中对格式化输出的总结: %字符:标记转换说明符的开始 转换标志:-表示...

  • Python自学笔记Day9

    Python自学笔记——Day9 基本输入输出 1. 输出函数及格式化 Python两种输出值的方式: 表达式语句...

  • Python几种格式化输出

    Python格式化输出 print(userInfo)print(userInfo1)print(userInfo...

网友评论

      本文标题:Python 格式化输出

      本文链接:https://www.haomeiwen.com/subject/jfjxtqtx.html