直接简单的输出
#简单输出一个字符串
>>>print('hello python apple') hello python apple
#简单输出多个字符串
>>>print('hello','python', 'apple') hello python apple
#简单输出拼接字符串
>>>print('hello'+ '\tpython'+ '\tapple') hello python apple
格式化输出 --为了让输出更加美观
主要是 1.%用法 2.format用法
1. %()
print('''===我的个人资料=== name:%s sex:%s age:%d height:%f '''%('我的家在东北',"boy",15,70.66)) #总结 %s放任何数据 %d%f 放数字
输出结果:
===我的个人资料=== name:我的家在东北 sex:boy age:15 height:70.660000
2. 另一种方式 {}字符串.format()
print('''===我的个人资料=== name:{0} sex:{1} age:{2} height:{3} '''.format('我的家在东北',"boy",15,70.66))
输出结果:
===我的个人资料=== name:我的家在东北 sex:boy age:15 height:70.66
注意的点
1. {}要比()输入的少;
2. {}索引里面的值从0开始;
3. {}里面的索引都要同时给或者同时不给
以上都是python3格式化输出的干货,操作非常适用和简单。学会的也可以保存起来,方便下次不会继续查阅~