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

逆序打印

时间:2014-09-05 12:39:12      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:blog   http   for   2014   sp   log   on   c   python   

才开始学习Python,我个人喜欢边看实例边学习其中的知识点,于是在网上找到了“Python100例”,

案例很不错,但是其中有几个例子不能正确实现,比如第29个例子--“给一个不多于5位的正整数,

要求:一、求它是几位数,二、逆序打印出各位数字”,如下图:

bubuko.com,布布扣

上面写的方法运行的时候是不正确的,如果有同样在开始学习Python的朋友不清楚怎么写的话可以试试:

number = raw_input()
print ‘该数为%d位数‘ % len(number)

# 逆序打印出各位数字
str = str(number)
for t in range( 1, len(str)+1 ):
print str[-t]

 

希望可以帮到同是在初学Python的你!

逆序打印

标签:blog   http   for   2014   sp   log   on   c   python   

原文地址:http://www.cnblogs.com/vickyname/p/3957685.html

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