码迷,mamicode.com
首页 > 编程语言 > 详细

滚动字符小程序-python

时间:2016-08-13 21:01:04      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:

在http://usingpython.com/dl/animBanner.py上看到的,挺好玩的,做了一点小改动。

#TO SHOW STRING "I LIKE YOU!" IN THE WINDOWS CONSOLE
import os
import time
#windows console width
width = 79
#
printedMessage = ["*****     *      *****  *   *  *****     *   *  *****  *   *    *",
                  "  *       *        *    *  *   *          * *   *   *  *   *    *",
                  "  *       *        *    * *    *           *    *   *  *   *    *",
                  "  *       *        *    **     *****       *    *   *  *   *    *",
                  "  *       *        *    * *    *           *    *   *  *   *    *",
                  "  *       *        *    *  *   *           *    *   *  *   *     ",
                  "*****     *****  *****  *   *  *****       *    *****  *****    *",]
#
offset = width
#
while True:
    os.system("cls")
    for row in range(7):
        print(" " * offset + printedMessage[row][max(0,offset*-1):width - offset])
        #
    offset -= 1
    if offset <= len(printedMessage[0]) * -1:
        offset = width
    #
    time.sleep(0.05)
    #

 

滚动字符小程序-python

标签:

原文地址:http://www.cnblogs.com/zhanchao/p/5768792.html

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