问答详情

python中如何实现print函数格式化输出?

995次观看
标签: 如何实现 函数 python
老师回答

一、print() 方法介绍

用于打印输出,是python中最常见的一个函数。

语法

print(*objects, sep=' ', end='n', file=sys.stdout)

二、数据格式化输出实例

a、格式化输出字符串

print ("His name is %s"%("Aviad"))

b、格式化输出整数

strHello = "the length of (%s) is %d" %('Hello World',len('Hello World'))
print strHello
#输出果:the length of (Hello World) is 11

c、格式化输出浮点数

a = 3.1415926
print "%f" %a
输出为:
3.141593

d、格式化输出指定占位符宽度

print ("Name:%10s Age:%8d Height:%8.2f"%("Aviad",25,1.83))

以上就是小编总结四种使用python中print函数实现格式化输出的方式,希望能对你有所帮助哦~

免费直播

    精选课程
    相关推荐

    注册电脑版

    版权所有 2003-2020 广州环球青藤科技发展有限公司