我是靠谱客的博主 隐形鱼,最近开发中收集的这篇文章主要介绍PY逐字输出~,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

唔……
我来了。
今天来教大家怎么逐字输出~
1.
import time,sys

def replace(strname,*w):
    for x in w:
        strname=strname.replace(x[0],x[1])
    return strname

def print(*w,t=0.1,end="n",sepr=" "):
    str_all=""
    
    for x in w:
        
        if w.index(x)==len(w)-1:
            str_all+=str(x)
        else:
            str_all+=str(x)+sepr
    str_all=replace(str_all,("\红","33[41m"),
                ("\绿","33[42m"),
                ("\黄","33[43m"),
                ("\蓝","33[44m"),
                ("\紫","33[45m"),
                ("\青""33[46m"),
                ("\白","33[47m"),
                ("\黑","33[40m"),
                ("\","33[0m"))
    
    for y in str_all:
        sys.stdout.write(y)
        sys.stdout.flush()
        time.sleep(t)
    sys.stdout.write(end)


就是这样,这个逐字输出比较慢的类型,大家可以试一试,因为里面有点颜色的,可以打开源码进行查看!


2.
from time import *
from os import *
from sys import *
def printer(line):
    for i in line:
        print(i,end="")
        stdout.flush()
        
    print("")
printer('''   ''')

sleep(0.06)
括号里是速度,数字越小就越快!


就先教大家2种,有时间会继续教的o~
 

最后

以上就是隐形鱼为你收集整理的PY逐字输出~的全部内容,希望文章能够帮你解决PY逐字输出~所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(35)

评论列表共有 0 条评论

立即
投稿
返回
顶部