Python里的while loop
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python里的while loop相关的知识,希望对你有一定的参考价值。
用while loop造出这种东西。。。。
Enter a string: Eat at Joe’s!
*****************
* Eat at Joe’s! *
*****************
#另外,楼上同学的答案不对啊,拜托你回答之前先测试一下
s = raw_input('Enter a string:')
i = 0
stars = ''
while (i < len(s) + 4):
stars += '*'
i += 1
print stars
print '* %s *' %s
print stars 参考技术A s = raw_intut("Enter a string:")
i = 0
while( i < 17 ):
print "*",
i += 1
print "*"
print "* %s *" %s
while( i > 0 ):
print "*",
i -= 1
print "*"
以上是关于Python里的while loop的主要内容,如果未能解决你的问题,请参考以下文章