码迷,mamicode.com
首页 > 其他好文 > 详细

3、对齐输出

时间:2019-07-01 21:24:11      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:inpu   class   col   题目   pre   个数   nbsp   运行   第一个   

题目:读入三个整数,按每个整数占8个字符的宽度,右对齐输出它们,按照格式要求依次输出三个整数,之间以一个空格分开。

a = int(input("第一个数:"))
b = int(input("第二个数:"))
c = int(input("第三个数:"))

s = "%8d %8d %8d"%(a,b,c)

print(s)

 

运行结果:

第一个数:3
第二个数:45
第三个数:567
3 45 567

3、对齐输出

标签:inpu   class   col   题目   pre   个数   nbsp   运行   第一个   

原文地址:https://www.cnblogs.com/echo-kid-coding/p/11113583.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!