获得徽章 6
赞了这篇沸点
赞了这篇文章
赞了这篇沸点
别再说 “太忙读不了书”,你那点 “忙”,大多是忙着刷无营养的短视频、躺着刷重复的八卦,是把时间都耗在了不用动脑子的消遣里。说 “挤不出十分钟读一页”,却能对着手机屏幕发呆半小时;喊 “没整块时间”,却连睡前翻两页书的耐心都没有。根本不是没时间,是你打心底觉得读书 “费劲儿”,宁愿让大脑跟着信息流飘,也不愿沉下心和文字对话 —— 别让这种 “懒”,慢慢把你变成只会被动接收的空心人。
展开
13
2
import time
from colorama import Fore, init
init(autoreset=True)
def typing_effect(text, color=Fore.WHITE, delay=0.03):
for char in text:
print(color + char, end='', flush=True)
time.sleep(delay)
print()
if __name__ == "__main__":
typing_effect("1010 0010 0100", Fore.CYAN, 0.08) # 单个字符延迟从0.1→0.08
time.sleep(0.3) # 间隔从0.5→0.3秒
typing_effect("—— 1024二进制密码 ——", Fore.YELLOW)
time.sleep(0.5) # 间隔从1→0.5秒
typing_effect("\n亲爱的程序员朋友:", Fore.GREEN)
typing_effect("今天是属于我们的1024", Fore.BLUE)
typing_effect("愿代码纯粹,bug秒现", Fore.MAGENTA) # 简化祝福语长度
typing_effect("愿头发茂密,需求清晰", Fore.RED)
typing_effect("咖啡温热,编程愉快", Fore.CYAN)
time.sleep(0.5) # 间隔从1→0.5秒
typing_effect("\nprint('1024快乐,代码改变世界')", Fore.YELLOW, 0.06) # 延迟从0.08→0.06
time.sleep(0.3) # 间隔从0.5→0.3秒
print(Fore.GREEN + "\n>>> 1024快乐,代码改变世界")
from colorama import Fore, init
init(autoreset=True)
def typing_effect(text, color=Fore.WHITE, delay=0.03):
for char in text:
print(color + char, end='', flush=True)
time.sleep(delay)
print()
if __name__ == "__main__":
typing_effect("1010 0010 0100", Fore.CYAN, 0.08) # 单个字符延迟从0.1→0.08
time.sleep(0.3) # 间隔从0.5→0.3秒
typing_effect("—— 1024二进制密码 ——", Fore.YELLOW)
time.sleep(0.5) # 间隔从1→0.5秒
typing_effect("\n亲爱的程序员朋友:", Fore.GREEN)
typing_effect("今天是属于我们的1024", Fore.BLUE)
typing_effect("愿代码纯粹,bug秒现", Fore.MAGENTA) # 简化祝福语长度
typing_effect("愿头发茂密,需求清晰", Fore.RED)
typing_effect("咖啡温热,编程愉快", Fore.CYAN)
time.sleep(0.5) # 间隔从1→0.5秒
typing_effect("\nprint('1024快乐,代码改变世界')", Fore.YELLOW, 0.06) # 延迟从0.08→0.06
time.sleep(0.3) # 间隔从0.5→0.3秒
print(Fore.GREEN + "\n>>> 1024快乐,代码改变世界")
展开
评论
点赞
傲慢与偏见早已写进人的骨头。它们不是错误,而是进化留下的诅咒。我们靠偏见活下来,又被偏见束缚一生。理性只是它们的伪装,而所谓清醒,不过是学会在自身腐烂中保持意识。
评论
点赞
![[哭笑]](http://lf-web-assets.juejin.cn/obj/juejin-web/xitu_juejin_web/img/jj_emoji_61.a296509.png)
![[奋斗]](http://lf-web-assets.juejin.cn/obj/juejin-web/xitu_juejin_web/img/jj_emoji_29.2801857.png)