如下所示:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#-*- coding: utf-8 -*-
#code:myhaspl@qq.com
#12-1.py
import sys
reload (sys)
sys.setdefaultencoding( "gbk" )
import sys,time
def print_one_by_one(text):
sys.stdout.write( "\r " + " " * 60 + "\r" ) # /r 光标回到行首
sys.stdout.flush() #把缓冲区全部输出
#print text
for c in text:
sys.stdout.write(c)
sys.stdout.flush()
time.sleep( 0.1 )
print_one_by_one( "解放军空军2月7日在官方微博发布消息称" )
|
以上这篇python 在屏幕上逐字显示一行字的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/unikran2018/article/details/79394648